mirror of https://github.com/PCSX2/pcsx2.git
Save-state: Shift-F3 now loads the backup save (if exists)
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4464 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
15efbf2dd3
commit
530f40091e
|
@ -36,6 +36,7 @@ void GSPanel::InitDefaultAccelerators()
|
|||
|
||||
m_Accels->Map( AAC( WXK_F1 ), "States_FreezeCurrentSlot" );
|
||||
m_Accels->Map( AAC( WXK_F3 ), "States_DefrostCurrentSlot");
|
||||
m_Accels->Map( AAC( WXK_F3 ).Shift(), "States_DefrostCurrentSlotBackup");
|
||||
m_Accels->Map( AAC( WXK_F2 ), "States_CycleSlotForward" );
|
||||
m_Accels->Map( AAC( WXK_F2 ).Shift(), "States_CycleSlotBackward" );
|
||||
|
||||
|
|
|
@ -676,7 +676,7 @@ void StateCopy_LoadFromSlot( uint slot, bool isFromBackup )
|
|||
|
||||
if( !wxFileExists( file ) )
|
||||
{
|
||||
Console.Warning( "Savestate slot %d is empty.", slot );
|
||||
Console.Warning( L"Savestate slot %d%s is empty.", slot, isFromBackup?L" (backup)":L"" );
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue