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:
avihal@gmail.com 2011-03-21 07:38:47 +00:00
parent 15efbf2dd3
commit 530f40091e
2 changed files with 2 additions and 1 deletions

View File

@ -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" );

View File

@ -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;
}