X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FTilemapFont.cc;h=da0e9a67f866b6af2dde5c6540c7d3748e8647e4;hp=ea876cef0f3c72c7987d89f2302ce342c18f9953;hb=23d8f7a5fbd1eca7f46f2342c20ac5e28ae0128a;hpb=fa9438c66ae0154e6d9ad196e0fb39649d359da4 diff --git a/src/TilemapFont.cc b/src/TilemapFont.cc index ea876ce..da0e9a6 100644 --- a/src/TilemapFont.cc +++ b/src/TilemapFont.cc @@ -32,13 +32,13 @@ TilemapFont::TilemapFont() : - Mf::Tilemap("Font") {} + Tilemap("Font") {} void TilemapFont::getTileCoords(char symbol, Mf::Scalar coords[8], - Mf::Tilemap::Orientation what) + Tilemap::Orientation what) { - Mf::Tilemap::Index index = 0; + Tilemap::Index index = 0; if (symbol >= ' ' && symbol <= '_') { @@ -53,7 +53,7 @@ void TilemapFont::getTileCoords(char symbol, Mf::Scalar coords[8], index = 0; } - Mf::Tilemap::getTileCoords(index, coords, what); + Tilemap::getTileCoords(index, coords, what); }