From 76796c76cd65ec41f924f172460928063edaa0f9 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 4 Jul 2014 21:50:18 -0400 Subject: [PATCH] ZeroGS: Fix a sprintf typo in GSopen. This 1000 millisecond specifier was intended for the AddMessage call. --- plugins/zerogs/dx/GSmain.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/zerogs/dx/GSmain.cpp b/plugins/zerogs/dx/GSmain.cpp index 90031c1c8e..33e03afe34 100644 --- a/plugins/zerogs/dx/GSmain.cpp +++ b/plugins/zerogs/dx/GSmain.cpp @@ -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);