From: Guus Sliepen Date: Wed, 23 Dec 2009 22:21:31 +0000 (+0100) Subject: Ensure the map editor can be compiled. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c51320ee6a6c728224ee85a4d9fd6fe22044d48c;p=quix0rs-blobwars.git Ensure the map editor can be compiled. --- 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();