X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FTilemapFont.cc;h=ea876cef0f3c72c7987d89f2302ce342c18f9953;hp=60f070c6b384202de2b2962dce709eb6319c8788;hb=eebb993ca929c3f4c235cad9e01dc4797fcd2945;hpb=7d15b919681bb9ec0088b4b27c6abf62d6dfb9b1 diff --git a/src/TilemapFont.cc b/src/TilemapFont.cc index 60f070c..ea876ce 100644 --- a/src/TilemapFont.cc +++ b/src/TilemapFont.cc @@ -26,19 +26,19 @@ *******************************************************************************/ -#include "TilemapFont.hh" #include +#include "TilemapFont.hh" + TilemapFont::TilemapFont() : - dc::tilemap("Font") -{} + Mf::Tilemap("Font") {} -void TilemapFont::getTileCoords(char symbol, dc::scalar coords[8], - dc::tilemap::orientation what) +void TilemapFont::getTileCoords(char symbol, Mf::Scalar coords[8], + Mf::Tilemap::Orientation what) { - unsigned index = 0; + Mf::Tilemap::Index index = 0; if (symbol >= ' ' && symbol <= '_') { @@ -53,7 +53,7 @@ void TilemapFont::getTileCoords(char symbol, dc::scalar coords[8], index = 0; } - dc::tilemap::getTileCoords(index, coords, what); + Mf::Tilemap::getTileCoords(index, coords, what); }