X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FTilemapFont.cc;h=48b0fc3951d7655f4c657cdc5f1b053616a37d80;hp=ea876cef0f3c72c7987d89f2302ce342c18f9953;hb=e973a129b5b83b628ba3f09e8c95682fc74080cd;hpb=c2321281bf12a7efaedde930422c7ddbc92080d4 diff --git a/src/TilemapFont.cc b/src/TilemapFont.cc index ea876ce..48b0fc3 100644 --- a/src/TilemapFont.cc +++ b/src/TilemapFont.cc @@ -32,13 +32,13 @@ TilemapFont::TilemapFont() : - Mf::Tilemap("Font") {} + Mf::Texture("Font") {} void TilemapFont::getTileCoords(char symbol, Mf::Scalar coords[8], - Mf::Tilemap::Orientation what) + Mf::Texture::Orientation what) { - Mf::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; } - Mf::Tilemap::getTileCoords(index, coords, what); + Mf::Texture::getTileCoords(index, coords, what); }