From 85f02f6d436c10724b2ac5d0fbe6ec20b11cd2f9 Mon Sep 17 00:00:00 2001 From: shinydoofy Date: Sun, 22 Mar 2009 01:34:59 +0000 Subject: [PATCH] SDL: Updated window name --- changelog.txt | 1 + src/drivers/sdl/sdl-video.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 58983816..84d473da 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,5 @@ ---version 2.0.4 yet to be released--- +22-mar-2009 - shinydoofy - sdl - updated window title 19-mar-2009 - adelikat - Win32 - make Video - windowed mode - disable hardware accel the default setting. Made high quality sound the default setting. 16-mar-2009 - adelikat - Win32 - GUI Dialog - added an option to disable the context menu 15-mar-2009 - adelikat - Lua - added movie.rerecordcount(), movie.length(), movie.getname(), movie.playbeginning(), FCEU.getreadonly(), FCEU.setreadonly() diff --git a/src/drivers/sdl/sdl-video.cpp b/src/drivers/sdl/sdl-video.cpp index 31e6476b..7e58436a 100644 --- a/src/drivers/sdl/sdl-video.cpp +++ b/src/drivers/sdl/sdl-video.cpp @@ -371,7 +371,7 @@ InitVideo(FCEUGI *gi) if(gi->name) { SDL_WM_SetCaption((const char *)gi->name, (const char *)gi->name); } else { - SDL_WM_SetCaption("FCE UltraX","FCE Ultra"); + SDL_WM_SetCaption(FCEU_NAME_AND_VERSION,"FCE Ultra"); } // create the surface for displaying graphical messages