ZeroGS: Fix a sprintf typo in GSopen.

This 1000 millisecond specifier was intended for the AddMessage call.
This commit is contained in:
Lioncash 2014-07-04 21:50:18 -04:00
parent c5d2343f51
commit 76796c76cd
1 changed files with 2 additions and 2 deletions

View File

@ -417,8 +417,8 @@ s32 CALLBACK GSopen(void *pDsp, char *Title, int multithread) {
}
if( conf.aa ) {
char strtitle[64];
sprintf(strtitle, "anti-aliasing - %s", s_aa[conf.aa], 1000);
ZeroGS::AddMessage(strtitle);
sprintf(strtitle, "anti-aliasing - %s", s_aa[conf.aa]);
ZeroGS::AddMessage(strtitle, 1000);
}
if( conf.options & GSOPTION_WIDESCREEN ) {
ZeroGS::AddMessage("16:9 widescreen - on", 1000);