diff options
Diffstat (limited to 'graphics/font.h')
-rw-r--r-- | graphics/font.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/font.h b/graphics/font.h index 0e65e9418c..101fd6eac6 100644 --- a/graphics/font.h +++ b/graphics/font.h @@ -149,10 +149,10 @@ public: #define FORWARD_DECLARE_FONT(n) \ extern const NewFont *n; \ - extern void create_##n(); + extern void create_##n() #define INIT_FONT(n) \ - create_##n(); + create_##n() } // End of namespace Graphics |