Fix GTK+ build failure from removed symbols.

This commit is contained in:
Brandon Wright 2010-11-14 20:25:35 -06:00
parent eb6a59cb8c
commit c052e66ae0
2 changed files with 1 additions and 3 deletions

View File

@ -201,7 +201,6 @@ Snes9xConfig::load_defaults (void)
Settings.ReverseStereo = FALSE; Settings.ReverseStereo = FALSE;
Settings.SoundPlaybackRate = 32000; Settings.SoundPlaybackRate = 32000;
Settings.DisableHDMA = 0; Settings.DisableHDMA = 0;
Settings.ShutdownMaster = 0;
Settings.StopEmulation = TRUE; Settings.StopEmulation = TRUE;
Settings.DisableIRQ = FALSE; Settings.DisableIRQ = FALSE;
Settings.FrameTimeNTSC = 16667; Settings.FrameTimeNTSC = 16667;
@ -364,7 +363,6 @@ Snes9xConfig::save_config_file (void)
xml_out_int (xml, "stereo", Settings.Stereo); xml_out_int (xml, "stereo", Settings.Stereo);
xml_out_int (xml, "reverse_stereo", Settings.ReverseStereo); xml_out_int (xml, "reverse_stereo", Settings.ReverseStereo);
xml_out_int (xml, "playback_rate", gui_config->sound_playback_rate); xml_out_int (xml, "playback_rate", gui_config->sound_playback_rate);
xml_out_int (xml, "speedhacks", Settings.ShutdownMaster);
xml_out_int (xml, "hdma", !(Settings.DisableHDMA)); xml_out_int (xml, "hdma", !(Settings.DisableHDMA));
xml_out_int (xml, "block_invalid_vram_access", Settings.BlockInvalidVRAMAccessMaster); xml_out_int (xml, "block_invalid_vram_access", Settings.BlockInvalidVRAMAccessMaster);
xml_out_int (xml, "upanddown", Settings.UpAndDown); xml_out_int (xml, "upanddown", Settings.UpAndDown);
@ -629,7 +627,6 @@ Snes9xConfig::set_option (const char *name, const char *value)
} }
else if (!strcasecmp (name, "speedhacks")) else if (!strcasecmp (name, "speedhacks"))
{ {
Settings.ShutdownMaster = atoi (value);
} }
else if (!strcasecmp (name, "overscan")) else if (!strcasecmp (name, "overscan"))
{ {

View File

@ -6379,6 +6379,7 @@
<property name="visible">True</property> <property name="visible">True</property>
<property name="can_focus">True</property> <property name="can_focus">True</property>
<property name="max_length">21</property> <property name="max_length">21</property>
<property name="activates_default">True</property>
</object> </object>
<packing> <packing>
<property name="expand">False</property> <property name="expand">False</property>