diff options
Diffstat (limited to 'src/libjin/render/font.cpp')
-rw-r--r-- | src/libjin/render/font.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/libjin/render/font.cpp b/src/libjin/render/font.cpp index e8e71b2..741b992 100644 --- a/src/libjin/render/font.cpp +++ b/src/libjin/render/font.cpp @@ -13,10 +13,10 @@ namespace render { using namespace jin::math; - -#define BITMAP_WIDTH 512 -#define BITMAP_HEIGHT 512 -#define PIXEL_HEIGHT 32 + + const int BITMAP_WIDTH = 512; + const int BITMAP_HEIGHT = 512; + const int PIXEL_HEIGHT = 32; Font::Font():Drawable() { @@ -190,4 +190,5 @@ namespace render } } + #endif // JIN_MODULES_RENDER
\ No newline at end of file |