From 29c2076d8734c3612d42fdb2bd48c786cf8cae52 Mon Sep 17 00:00:00 2001 From: Robin Gustafsson Date: Thu, 10 Nov 2016 20:36:12 +0100 Subject: [PATCH] Fix call to SDL_SetWindowTitle --- sdl2/pdcsetsc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdl2/pdcsetsc.c b/sdl2/pdcsetsc.c index ecfb17a3..24e96cae 100644 --- a/sdl2/pdcsetsc.c +++ b/sdl2/pdcsetsc.c @@ -50,7 +50,7 @@ void PDC_set_title(const char *title) { PDC_LOG(("PDC_set_title() - called:<%s>\n", title)); - void SDL_SetWindowTitle(sdl_window, title); + SDL_SetWindowTitle(pdc_window, title); } int PDC_set_blink(bool blinkon)