1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +00:00

Addition to last commit, don't create a save directory on death

This commit is contained in:
scrawl 2016-03-13 23:47:57 +01:00
parent 426a6fdcc2
commit 7463c0c353

View File

@ -109,13 +109,14 @@ void MWState::StateManager::askLoadRecent()
if( !mAskLoadRecent )
{
if(getCurrentCharacter()->begin() == getCurrentCharacter()->end() )//no saves
const MWState::Character* character = getCurrentCharacter(false);
if(!character || character->begin() == character->end())//no saves
{
MWBase::Environment::get().getWindowManager()->pushGuiMode (MWGui::GM_MainMenu);
}
else
{
MWState::Slot lastSave = *getCurrentCharacter()->begin();
MWState::Slot lastSave = *character->begin();
std::vector<std::string> buttons;
buttons.push_back("#{sYes}");
buttons.push_back("#{sNo}");