[SDL] removed extraneous bracket from window title

This commit is contained in:
Clownacy 2016-10-14 11:59:41 +01:00
parent 40672854af
commit edbef3fda6

View File

@ -873,7 +873,7 @@ int main (int argc, char **argv)
case SDL_USEREVENT:
{
char caption[100];
sprintf(caption,"Genesis Plus GX - %d fps - %s)", event.user.code, (rominfo.international[0] != 0x20) ? rominfo.international : rominfo.domestic);
sprintf(caption,"Genesis Plus GX - %d fps - %s", event.user.code, (rominfo.international[0] != 0x20) ? rominfo.international : rominfo.domestic);
SDL_WM_SetCaption(caption, NULL);
break;
}