diff options
Diffstat (limited to 'src/render/Console.cpp')
-rw-r--r-- | src/render/Console.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/render/Console.cpp b/src/render/Console.cpp index d4940955..5ae5d763 100644 --- a/src/render/Console.cpp +++ b/src/render/Console.cpp @@ -1,5 +1,6 @@ #include "common.h" -#include "patcher.h" +#include <stdarg.h> + #include "Console.h" #include "Font.h" #include "Timer.h" @@ -8,7 +9,7 @@ #define CONSOLE_Y_POS (10.0f) #define CONSOLE_LINE_HEIGHT (12.0f) -CConsole &TheConsole = *(CConsole*)0x8F6498; +CConsole TheConsole; void CConsole::AddLine(char *s, uint8 r, uint8 g, uint8 b) |