From c51320ee6a6c728224ee85a4d9fd6fe22044d48c Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Wed, 23 Dec 2009 23:21:31 +0100 Subject: [PATCH] Ensure the map editor can be compiled. --- src/mapEditor.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/mapEditor.cpp b/src/mapEditor.cpp index 5810419..e8096de 100644 --- a/src/mapEditor.cpp +++ b/src/mapEditor.cpp @@ -20,6 +20,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "mapEditor.h" +Config config; +ReplayData replayData; + void drawMap(int mapX, int mapY) { SDL_Rect r; @@ -431,6 +434,10 @@ int main(int argc, char *argv[]) exit(1); } + config.engine = &engine; + + replayData.reset(); + atexit(cleanup); engine.useAudio = 0; @@ -469,7 +476,7 @@ int main(int argc, char *argv[]) { engine.getInput(); config.populate(); - engine.doPause(); + config.doPause(); engine.doFrameLoop(); graphics.updateScreen(); -- 2.39.5