mirror of https://github.com/PCSX2/pcsx2.git
ZeroGS: Fix a sprintf typo in GSopen.
This 1000 millisecond specifier was intended for the AddMessage call.
This commit is contained in:
parent
c5d2343f51
commit
76796c76cd
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue