From 3ecd31976efdf78ae931ebfb7f113a5d3ccdce5c Mon Sep 17 00:00:00 2001 From: punkrockguy318 Date: Sat, 7 Jun 2008 22:08:34 +0000 Subject: [PATCH] now remembers sound settings on load and quit --- gfceu | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gfceu b/gfceu index 6391476b..044de66e 100644 --- a/gfceu +++ b/gfceu @@ -159,7 +159,11 @@ def give_widgets(): global xml, options try: widgets['rom_entry'].set_text(options.romfile) + + # sound widgets['sound_check'].set_active(options.sound_check) + widgets['soundq_check'].set_active(options.soundq_check) + widgets['soundrate_entry'].set_text(options.soundrate_entry) widgets['fullscreen_check'].set_active(options.fullscreen_check) widgets['opengl_check'].set_active(options.opengl_check)