From: Guus Sliepen Date: Mon, 28 Jun 2010 22:05:43 +0000 (+0200) Subject: Ensure the map editor can be compiled. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1f002e6ff7a1e27cbb69cea36abad674b3e554d0;p=quix0rs-blobwars.git Ensure the map editor can be compiled. Reapplication of commit c51320ee6a6c728224ee85a4d9fd6fe22044d48c. --- diff --git a/src/mapEditor.cpp b/src/mapEditor.cpp index fb00004..0377156 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();