git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@66587 e17a0e51-4ae3-4d35-97c3-1a29b211df97

This commit is contained in:
SND\edgbla_cp 2011-05-05 14:29:52 +00:00
parent 1b994def06
commit d1c9470b12
3 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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