]> git.jsancho.org Git - lugaru.git/blobdiff - Source/GameTick.cpp
I had added the wrong maps, not it works better
[lugaru.git] / Source / GameTick.cpp
index 58baac80451814c9bc9fd1f2340febe891a10f97..36452aa4f5e09f5c6de70fdc6ef92e8ee51199d1 100644 (file)
@@ -1408,13 +1408,14 @@ void Game::Loadlevel(int which){
            Loadlevel("tutorial");
        }else if(which >= 0 && which <= 15){
            char buf[32];
-           snprintf(buf, 32, "map%d", which + 1);
+           snprintf(buf, 32, "map%d", which + 1); // challenges
            Loadlevel(buf);
        }else
            Loadlevel("mapsave");
 }
 
 void Game::Loadlevel(const char *name){
+       cout << "loading level " << name << "…" << endl;
        int templength;
        float lamefloat;
        static const char *pfx = ":Data:Maps:";