From a4909906f5fee73551601f5c5cbde7eb99fa719e Mon Sep 17 00:00:00 2001 From: punkrockguy318 Date: Thu, 18 Feb 2010 02:02:37 +0000 Subject: [PATCH] Removed experimental tag from GTK out of build scripts Still disabled by default --- README | 0 SConstruct | 6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) delete mode 100644 README diff --git a/README b/README deleted file mode 100644 index e69de29b..00000000 diff --git a/SConstruct b/SConstruct index 10cb531e..d5efe91c 100644 --- a/SConstruct +++ b/SConstruct @@ -7,12 +7,12 @@ opts.AddVariables( BoolVariable('FRAMESKIP', 'Enable frameskipping', 1), BoolVariable('OPENGL', 'Enable OpenGL support', 1), BoolVariable('LSB_FIRST', 'Least signficant byte first (non-PPC)', 1), - BoolVariable('DEBUG', 'Build with debugging symbols', 0), + BoolVariable('DEBUG', 'Build with debugging symbols', 1), BoolVariable('LUA', 'Enable Lua support', 1), - BoolVariable('NEWPPU', 'Enable new PPU core', 0), + BoolVariable('NEWPPU', 'Enable new PPU core', 1), BoolVariable('CREATE_AVI', 'Enable avi creation support (SDL only)', 0), BoolVariable('LOGO', 'Enable a logoscreen when creating avis (SDL only)', '1'), - BoolVariable('GTK2', 'Enable GTK2 GUI (SDL only) (EXPERIMENTAL!)', 0) + BoolVariable('GTK2', 'Enable GTK2 GUI (SDL only)', 0) ) env = Environment(options = opts)