mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-28 15:57:59 +03:00
Fix savegames not loading from menus
This commit is contained in:
parent
554661d913
commit
db7f864858
1 changed files with 2 additions and 1 deletions
|
@ -756,7 +756,8 @@ GameStatus HandleMenuCalls(bool isTitle)
|
||||||
{
|
{
|
||||||
SaveGame::LoadHeaders();
|
SaveGame::LoadHeaders();
|
||||||
g_Gui.SetInventoryMode(InventoryMode::Load);
|
g_Gui.SetInventoryMode(InventoryMode::Load);
|
||||||
g_Gui.CallInventory(LaraItem, false);
|
if (g_Gui.CallInventory(LaraItem, false))
|
||||||
|
gameStatus = GameStatus::LoadGame;
|
||||||
}
|
}
|
||||||
else if (doPause && g_Gui.GetInventoryMode() != InventoryMode::Pause)
|
else if (doPause && g_Gui.GetInventoryMode() != InventoryMode::Pause)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue