Skip to content

Commit b38e474

Browse files
committed
slim down options
Signed-off-by: Vincent-FK <[email protected]>
1 parent 97e6190 commit b38e474

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

SConstruct

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ opts.AddVariables(
1717
BoolVariable('DEBUG', 'Build with debugging symbols', 1),
1818
BoolVariable('RELEASE', 'Set to 1 to build for release', 0),
1919
BoolVariable('FRAMESKIP', 'Enable frameskipping', 1),
20-
BoolVariable('OPENGL', 'Enable OpenGL support', 1),
21-
BoolVariable('LUA', 'Enable Lua support', 1),
22-
BoolVariable('GTK', 'Enable GTK2 GUI (SDL only)', 1),
20+
BoolVariable('OPENGL', 'Enable OpenGL support', 0),
21+
BoolVariable('LUA', 'Enable Lua support', 0),
22+
BoolVariable('GTK', 'Enable GTK2 GUI (SDL only)', 0),
2323
BoolVariable('GTK3', 'Enable GTK3 GUI (SDL only)', 0),
2424
BoolVariable('NEWPPU', 'Enable new PPU core', 1),
25-
BoolVariable('CREATE_AVI', 'Enable avi creation support (SDL only)', 1),
26-
BoolVariable('LOGO', 'Enable a logoscreen when creating avis (SDL only)', 1),
25+
BoolVariable('CREATE_AVI', 'Enable avi creation support (SDL only)', 0),
26+
BoolVariable('LOGO', 'Enable a logoscreen when creating avis (SDL only)', 0),
2727
BoolVariable('SYSTEM_LUA','Use system lua instead of static lua provided with fceux', 0),
2828
BoolVariable('SYSTEM_MINIZIP', 'Use system minizip instead of static minizip provided with fceux', 0),
2929
BoolVariable('LSB_FIRST', 'Least signficant byte first (non-PPC)', 1),

0 commit comments

Comments
 (0)