From edbef3fda6216ec113d2135fb44e6a68d2288c2b Mon Sep 17 00:00:00 2001 From: Clownacy Date: Fri, 14 Oct 2016 11:59:41 +0100 Subject: [PATCH] [SDL] removed extraneous bracket from window title --- sdl/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdl/main.c b/sdl/main.c index 0fdf706..ee1ffe2 100644 --- a/sdl/main.c +++ b/sdl/main.c @@ -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; }