From d1c9470b12b351443f14ee1cb5620bfffc6dfb0a Mon Sep 17 00:00:00 2001 From: "SND\\edgbla_cp" Date: Thu, 5 May 2011 14:29:52 +0000 Subject: [PATCH] git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@66587 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- doc/keys.txt | 4 ++-- gui/AboutDlg.c | 2 +- libpcsxcore/psxcounters.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/keys.txt b/doc/keys.txt index 3806d817..e5b38832 100644 --- a/doc/keys.txt +++ b/doc/keys.txt @@ -15,6 +15,6 @@ F8: Take a game screenshot F12: Reset ESC: Return to the main window -Ctrl 1 to 5: Save state 1 to 5 -Alt 1 to 5: Load state 1 to 5 +Ctrl 1 to 9: Save state 1 to 9 +Alt 1 to 9: Load state 1 to 9 Alt 0: Load state from last ESC quit diff --git a/gui/AboutDlg.c b/gui/AboutDlg.c index b0a07453..b5d18d90 100644 --- a/gui/AboutDlg.c +++ b/gui/AboutDlg.c @@ -71,7 +71,7 @@ void RunAboutDialog(void) { const gchar *copyright = N_( "(C) 1999-2003 PCSX Team\n" "(C) 2005-2009 PCSX-df Team\n" - "(C) 2009-2010 PCSX-Reloaded Team"); + "(C) 2009-2011 PCSX-Reloaded Team"); const gchar *license = N_( "This program is free software; you can redistribute it and/or modify " diff --git a/libpcsxcore/psxcounters.c b/libpcsxcore/psxcounters.c index 5f47c768..454a5e55 100644 --- a/libpcsxcore/psxcounters.c +++ b/libpcsxcore/psxcounters.c @@ -98,7 +98,7 @@ void verboseLog( s32 level, const char *str, ... ) char buf[ 4096 ]; va_start( va, str ); - vsprintf( buf, str, va ); + vsnprintf( buf, sizeof(buf), str, va ); va_end( va ); printf( buf );