X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2FTilemapFont.cc;h=48b0fc3951d7655f4c657cdc5f1b053616a37d80;hb=81ff940d1bea07447f8218ab9a764fbf393431e8;hp=da0e9a67f866b6af2dde5c6540c7d3748e8647e4;hpb=23d8f7a5fbd1eca7f46f2342c20ac5e28ae0128a;p=chaz%2Fyoink 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); }