aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/Render/Font.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libjin/Render/Font.cpp')
-rw-r--r--src/libjin/Render/Font.cpp9
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