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