diff options
| author | SND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2011-05-05 14:29:52 +0000 |
|---|---|---|
| committer | SND\edgbla_cp <SND\edgbla_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2011-05-05 14:29:52 +0000 |
| commit | d1c9470b12b351443f14ee1cb5620bfffc6dfb0a (patch) | |
| tree | 01dfb1e0f3285e1f9b8aab43e8d0b49bb49a2cc0 | |
| parent | 1b994def069a2a09e792f88bb9287387a9a4cc97 (diff) | |
| download | pcsxr-d1c9470b12b351443f14ee1cb5620bfffc6dfb0a.tar.gz | |
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@66587 e17a0e51-4ae3-4d35-97c3-1a29b211df97
| -rw-r--r-- | doc/keys.txt | 4 | ||||
| -rw-r--r-- | gui/AboutDlg.c | 2 | ||||
| -rw-r--r-- | 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 );
|
