1
0
mirror of https://github.com/XProger/OpenLara.git synced 2025-01-17 21:09:00 +01:00
This commit is contained in:
XProger 2016-12-30 04:09:30 +03:00
parent ed2329bbcd
commit 3024695438
3 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@ -30,8 +30,8 @@ namespace Game {
Core::init();
level = NULL;
if (!lvlName) lvlName = "LEVEL2.PSX";
if (!sndName) sndName = "05.ogg";
if (!lvlName) lvlName = (char*)"LEVEL2.PSX";
if (!sndName) sndName = (char*)"05.ogg";
//lstartLevel("LEVEL2_DEMO.PHD", true, false);
//lstartLevel("GYM.PSX", false, true);
//lstartLevel("LEVEL3A.PHD", false, false);

View File

@ -19,7 +19,7 @@ extern "C" {
void EMSCRIPTEN_KEEPALIVE game_level_load(char *data, int size, int home) {
Stream stream(data, size);
Game::startLevel(stream, false, home);
Game::startLevel(stream, NULL, false, home);
}
}