Gfceux bugfixes and sdl fceux bugfixes

[[Split portion of a mixed commit.]]
This commit is contained in:
punkrockguy318 2008-08-11 03:16:46 +00:00
parent 919896bba5
commit d852574c62
3 changed files with 10 additions and 2 deletions

View File

@ -118,4 +118,6 @@ env.Command(fceux_h_dst, fceux_h_src, [Copy(fceux_h_dst, fceux_h_src)])
env.Command(fceux_dst, fceux_src, [Copy(fceux_dst, fceux_src)]) env.Command(fceux_dst, fceux_src, [Copy(fceux_dst, fceux_src)])
env.Command(auxlib_dst, auxlib_src, [Copy(auxlib_dst, auxlib_src)]) env.Command(auxlib_dst, auxlib_src, [Copy(auxlib_dst, auxlib_src)])
env.Alias(target="install", source=env.Install(dir="/usr/local/bin/", source=("bin/fceux", "bin/auxlib.lua"))) # TODO: Fix this build script to gracefully install auxlib and the man page
#env.Alias(target="install", source=env.Install(dir="/usr/local/bin/", source=("bin/fceux", "bin/auxlib.lua")))
env.Alias(target="install", source=env.Install(dir="/usr/local/bin/", source="bin/fceux"))

View File

@ -1,4 +1,6 @@
---version 2.0.2 released--- ---version 2.0.2 released---
10-aug-2008 - punkrockguy318 - SDL: cleaned up the SConsruct
10-aug-2008 - punkrockguy318 - SDL: fixed issue where fceu would lock up when file dialogs were opened during fullscreen
10-aug-2008 - punkrockguy318 - SDL: fixed bug where fceux would close when file dialogs were closed 10-aug-2008 - punkrockguy318 - SDL: fixed bug where fceux would close when file dialogs were closed
10-aug-2008 - punkrockguy318 - SDL: File open dialog is now used to movie playback 10-aug-2008 - punkrockguy318 - SDL: File open dialog is now used to movie playback
10-aug-2008 - punkrockguy318 - SDL: File open wrapper now takes a titlebar argument 10-aug-2008 - punkrockguy318 - SDL: File open wrapper now takes a titlebar argument

View File

@ -179,6 +179,10 @@ std::string GetFilename(const char* title)
fname = GetOpenFileName(&ofn); fname = GetOpenFileName(&ofn);
#else #else
int fullscreen = 0;
g_config->getOption("SDL.Fullscreen", &fullscreen);
if(fullscreen)
ToggleFS();
FILE *fpipe; FILE *fpipe;
std::string command = "zenity --file-selection --title=\""; std::string command = "zenity --file-selection --title=\"";
command.append(title); command.append(title);