From ddc4128c361f5ce89f431295ddc30879fb5422eb Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Mon, 20 Nov 2017 21:00:57 +0100 Subject: [PATCH] fixed bug when loading game engine snapshot values for MM game engine --- src/game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.c b/src/game.c index 41768a54..464cdc0b 100644 --- a/src/game.c +++ b/src/game.c @@ -15268,7 +15268,7 @@ void LoadEngineSnapshotValues() LoadEngineSnapshotValues_EM(); if (level.game_engine_type == GAME_ENGINE_TYPE_SP) LoadEngineSnapshotValues_SP(); - if (level.game_engine_type == GAME_ENGINE_TYPE_SP) + if (level.game_engine_type == GAME_ENGINE_TYPE_MM) LoadEngineSnapshotValues_MM(); } -- 2.34.1