mirror of https://github.com/PCSX2/pcsx2.git
Add the new speedhack dialog to the Linux code.
git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@539 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
parent
dc017cd99a
commit
e8aeafdefc
|
@ -762,10 +762,28 @@ void on_Speed_Hacks(GtkMenuItem *menuitem, gpointer user_data)
|
|||
{
|
||||
SpeedHacksDlg = create_SpeedHacksDlg();
|
||||
|
||||
set_checked(SpeedHacksDlg, "check_EE_Double_Sync", (Config.Hacks & FLAG_EE_2_SYNC));
|
||||
set_checked(SpeedHacksDlg, "check_IOP_Double_Sync", (Config.Hacks & FLAG_IOP_2_SYNC));
|
||||
set_checked(SpeedHacksDlg, "check_Triple_Sync",(Config.Hacks & FLAG_TRIPLE_SYNC));
|
||||
set_checked(SpeedHacksDlg, "check_ESC_Hack", (Config.Hacks & FLAG_ESC));
|
||||
switch (CHECK_EE_CYCLERATE)
|
||||
{
|
||||
case 0:
|
||||
set_checked(SpeedHacksDlg, "check_default_cycle_rate", true);
|
||||
break;
|
||||
case 1:
|
||||
set_checked(SpeedHacksDlg, "check_1_5_cycle_rate", true);
|
||||
break;
|
||||
case 2:
|
||||
set_checked(SpeedHacksDlg, "check_2_cycle_rate", true);
|
||||
break;
|
||||
case 3:
|
||||
set_checked(SpeedHacksDlg, "check_3_cycle_rate", true);
|
||||
break;
|
||||
default:
|
||||
set_checked(SpeedHacksDlg, "check_default_cycle_rate", true);
|
||||
break;
|
||||
}
|
||||
|
||||
set_checked(SpeedHacksDlg, "check_iop_cycle_rate", CHECK_IOP_CYCLERATE);
|
||||
set_checked(SpeedHacksDlg, "check_wait_cycles_sync_hack", CHECK_WAITCYCLE_HACK);
|
||||
set_checked(SpeedHacksDlg, "check_ESC_hack",CHECK_ESCAPE_HACK);
|
||||
|
||||
gtk_widget_show_all(SpeedHacksDlg);
|
||||
gtk_widget_set_sensitive(MainWindow, FALSE);
|
||||
|
@ -776,10 +794,18 @@ void on_Speed_Hack_OK(GtkButton *button, gpointer user_data)
|
|||
{
|
||||
Config.Hacks = 0;
|
||||
|
||||
Config.Hacks |= is_checked(SpeedHacksDlg, "check_EE_Double_Sync") ? FLAG_EE_2_SYNC : 0;
|
||||
Config.Hacks |= is_checked(SpeedHacksDlg, "check_IOP_Double_Sync") ? FLAG_IOP_2_SYNC : 0;
|
||||
Config.Hacks |= is_checked(SpeedHacksDlg, "check_Triple_Sync") ? FLAG_TRIPLE_SYNC : 0;
|
||||
Config.Hacks |= is_checked(SpeedHacksDlg, "check_ESC_Hack") ? FLAG_ESC : 0;
|
||||
if is_checked(SpeedHacksDlg, "check_default_cycle_rate")
|
||||
Config.Hacks = 0;
|
||||
else if is_checked(SpeedHacksDlg, "check_1_5_cycle_rate")
|
||||
Config.Hacks = 1;
|
||||
else if is_checked(SpeedHacksDlg, "check_2_cycle_rate")
|
||||
Config.Hacks = 2;
|
||||
else if is_checked(SpeedHacksDlg, "check_3_cycle_rate")
|
||||
Config.Hacks = 3;
|
||||
|
||||
Config.Hacks |= is_checked(SpeedHacksDlg, "check_iop_cycle_rate") << 3;
|
||||
Config.Hacks |= is_checked(SpeedHacksDlg, "check_wait_cycles_sync_hack") << 4;
|
||||
Config.Hacks |= is_checked(SpeedHacksDlg, "check_ESC_hack") << 10;
|
||||
|
||||
SaveConfig();
|
||||
|
||||
|
|
|
@ -534,20 +534,33 @@ create_SpeedHacksDlg (void)
|
|||
{
|
||||
GtkWidget *SpeedHacksDlg;
|
||||
GtkWidget *dialog_vbox3;
|
||||
GtkWidget *vbox31;
|
||||
GtkWidget *label43;
|
||||
GtkWidget *frame13;
|
||||
GtkWidget *alignment8;
|
||||
GtkWidget *vbox34;
|
||||
GtkWidget *check_EE_Double_Sync;
|
||||
GtkWidget *check_IOP_Double_Sync;
|
||||
GtkWidget *check_Triple_Sync;
|
||||
GtkWidget *label46;
|
||||
GtkWidget *frame14;
|
||||
GtkWidget *alignment9;
|
||||
GtkWidget *vbox33;
|
||||
GtkWidget *check_ESC_Hack;
|
||||
GtkWidget *label47;
|
||||
GtkWidget *vbox59;
|
||||
GtkWidget *label88;
|
||||
GtkWidget *hbox39;
|
||||
GtkWidget *frame37;
|
||||
GtkWidget *alignment32;
|
||||
GtkWidget *vbox61;
|
||||
GtkWidget *check_default_cycle_rate;
|
||||
GSList *check_default_cycle_rate_group = NULL;
|
||||
GtkWidget *label98;
|
||||
GtkWidget *check_1_5_cycle_rate;
|
||||
GtkWidget *label93;
|
||||
GtkWidget *check_2_cycle_rate;
|
||||
GtkWidget *label94;
|
||||
GtkWidget *check_3_cycle_rate;
|
||||
GtkWidget *label95;
|
||||
GtkWidget *hseparator1;
|
||||
GtkWidget *label91;
|
||||
GtkWidget *label90;
|
||||
GtkWidget *vbox60;
|
||||
GtkWidget *check_iop_cycle_rate;
|
||||
GtkWidget *label96;
|
||||
GtkWidget *check_wait_cycles_sync_hack;
|
||||
GtkWidget *label97;
|
||||
GtkWidget *frame36;
|
||||
GtkWidget *alignment31;
|
||||
GtkWidget *check_ESC_hack;
|
||||
GtkWidget *label89;
|
||||
GtkWidget *dialog_action_area3;
|
||||
GtkWidget *button99;
|
||||
GtkWidget *button98;
|
||||
|
@ -559,68 +572,132 @@ create_SpeedHacksDlg (void)
|
|||
dialog_vbox3 = GTK_DIALOG (SpeedHacksDlg)->vbox;
|
||||
gtk_widget_show (dialog_vbox3);
|
||||
|
||||
vbox31 = gtk_vbox_new (FALSE, 0);
|
||||
gtk_widget_show (vbox31);
|
||||
gtk_box_pack_start (GTK_BOX (dialog_vbox3), vbox31, TRUE, TRUE, 0);
|
||||
vbox59 = gtk_vbox_new (FALSE, 0);
|
||||
gtk_widget_show (vbox59);
|
||||
gtk_box_pack_start (GTK_BOX (dialog_vbox3), vbox59, FALSE, FALSE, 0);
|
||||
|
||||
label43 = gtk_label_new (_("These hacks will affect the speed of PCSX2 but possibly compromise compatibility.\nIf you have problems, Disable all of these and try again."));
|
||||
gtk_widget_show (label43);
|
||||
gtk_box_pack_start (GTK_BOX (vbox31), label43, FALSE, FALSE, 0);
|
||||
gtk_label_set_justify (GTK_LABEL (label43), GTK_JUSTIFY_CENTER);
|
||||
label88 = gtk_label_new (_("These hacks will affect the speed of PCSX2 but possibly compromise compatibility.\nIf you have problems, Disable all of these and try again."));
|
||||
gtk_widget_show (label88);
|
||||
gtk_box_pack_start (GTK_BOX (vbox59), label88, FALSE, FALSE, 0);
|
||||
|
||||
frame13 = gtk_frame_new (NULL);
|
||||
gtk_widget_show (frame13);
|
||||
gtk_box_pack_start (GTK_BOX (vbox31), frame13, TRUE, TRUE, 0);
|
||||
gtk_frame_set_shadow_type (GTK_FRAME (frame13), GTK_SHADOW_NONE);
|
||||
hbox39 = gtk_hbox_new (FALSE, 0);
|
||||
gtk_widget_show (hbox39);
|
||||
gtk_box_pack_start (GTK_BOX (vbox59), hbox39, TRUE, TRUE, 0);
|
||||
|
||||
alignment8 = gtk_alignment_new (0.5, 0.5, 1, 1);
|
||||
gtk_widget_show (alignment8);
|
||||
gtk_container_add (GTK_CONTAINER (frame13), alignment8);
|
||||
gtk_alignment_set_padding (GTK_ALIGNMENT (alignment8), 0, 0, 12, 0);
|
||||
frame37 = gtk_frame_new (NULL);
|
||||
gtk_widget_show (frame37);
|
||||
gtk_box_pack_start (GTK_BOX (hbox39), frame37, TRUE, TRUE, 0);
|
||||
|
||||
vbox34 = gtk_vbox_new (FALSE, 0);
|
||||
gtk_widget_show (vbox34);
|
||||
gtk_container_add (GTK_CONTAINER (alignment8), vbox34);
|
||||
alignment32 = gtk_alignment_new (0.5, 0.5, 1, 1);
|
||||
gtk_widget_show (alignment32);
|
||||
gtk_container_add (GTK_CONTAINER (frame37), alignment32);
|
||||
gtk_alignment_set_padding (GTK_ALIGNMENT (alignment32), 0, 0, 12, 0);
|
||||
|
||||
check_EE_Double_Sync = gtk_check_button_new_with_mnemonic (_("EE Sync Hack (x2) - Doubles the cycle rate of the EE."));
|
||||
gtk_widget_show (check_EE_Double_Sync);
|
||||
gtk_box_pack_start (GTK_BOX (vbox34), check_EE_Double_Sync, FALSE, FALSE, 0);
|
||||
vbox61 = gtk_vbox_new (FALSE, 2);
|
||||
gtk_widget_show (vbox61);
|
||||
gtk_container_add (GTK_CONTAINER (alignment32), vbox61);
|
||||
|
||||
check_IOP_Double_Sync = gtk_check_button_new_with_mnemonic (_("IOP Sync Hack (x2) - Doubles the cycle rate of the IOP"));
|
||||
gtk_widget_show (check_IOP_Double_Sync);
|
||||
gtk_box_pack_start (GTK_BOX (vbox34), check_IOP_Double_Sync, FALSE, FALSE, 0);
|
||||
check_default_cycle_rate = gtk_radio_button_new_with_mnemonic (NULL, _("Default Cycle Rate"));
|
||||
gtk_widget_show (check_default_cycle_rate);
|
||||
gtk_box_pack_start (GTK_BOX (vbox61), check_default_cycle_rate, FALSE, FALSE, 0);
|
||||
gtk_radio_button_set_group (GTK_RADIO_BUTTON (check_default_cycle_rate), check_default_cycle_rate_group);
|
||||
check_default_cycle_rate_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (check_default_cycle_rate));
|
||||
|
||||
check_Triple_Sync = gtk_check_button_new_with_mnemonic (_("EE/IOP Sync Hack (x3) - Makes EE and IOP hacks triple the cycle rate. "));
|
||||
gtk_widget_show (check_Triple_Sync);
|
||||
gtk_box_pack_start (GTK_BOX (vbox34), check_Triple_Sync, FALSE, FALSE, 0);
|
||||
label98 = gtk_label_new (_("Most compatable option - recommended for everyone with high-end machines."));
|
||||
gtk_widget_show (label98);
|
||||
gtk_box_pack_start (GTK_BOX (vbox61), label98, FALSE, FALSE, 0);
|
||||
gtk_label_set_line_wrap (GTK_LABEL (label98), TRUE);
|
||||
gtk_misc_set_alignment (GTK_MISC (label98), 0.29, 0.5);
|
||||
|
||||
label46 = gtk_label_new (_("<b>Sync Hacks</b>"));
|
||||
gtk_widget_show (label46);
|
||||
gtk_frame_set_label_widget (GTK_FRAME (frame13), label46);
|
||||
gtk_label_set_use_markup (GTK_LABEL (label46), TRUE);
|
||||
check_1_5_cycle_rate = gtk_radio_button_new_with_mnemonic (NULL, _("Use x1.5 Cycle Rate"));
|
||||
gtk_widget_show (check_1_5_cycle_rate);
|
||||
gtk_box_pack_start (GTK_BOX (vbox61), check_1_5_cycle_rate, FALSE, FALSE, 0);
|
||||
gtk_radio_button_set_group (GTK_RADIO_BUTTON (check_1_5_cycle_rate), check_default_cycle_rate_group);
|
||||
check_default_cycle_rate_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (check_1_5_cycle_rate));
|
||||
|
||||
frame14 = gtk_frame_new (NULL);
|
||||
gtk_widget_show (frame14);
|
||||
gtk_box_pack_start (GTK_BOX (vbox31), frame14, TRUE, TRUE, 0);
|
||||
gtk_frame_set_shadow_type (GTK_FRAME (frame14), GTK_SHADOW_NONE);
|
||||
label93 = gtk_label_new (_("Moderate speedup, and works well with most games."));
|
||||
gtk_widget_show (label93);
|
||||
gtk_box_pack_start (GTK_BOX (vbox61), label93, FALSE, FALSE, 0);
|
||||
gtk_label_set_line_wrap (GTK_LABEL (label93), TRUE);
|
||||
gtk_misc_set_alignment (GTK_MISC (label93), 0.29, 0.5);
|
||||
|
||||
alignment9 = gtk_alignment_new (0.5, 0.5, 1, 1);
|
||||
gtk_widget_show (alignment9);
|
||||
gtk_container_add (GTK_CONTAINER (frame14), alignment9);
|
||||
gtk_alignment_set_padding (GTK_ALIGNMENT (alignment9), 0, 0, 12, 0);
|
||||
check_2_cycle_rate = gtk_radio_button_new_with_mnemonic (NULL, _("Use x2 Cycle Rate"));
|
||||
gtk_widget_show (check_2_cycle_rate);
|
||||
gtk_box_pack_start (GTK_BOX (vbox61), check_2_cycle_rate, FALSE, FALSE, 0);
|
||||
gtk_radio_button_set_group (GTK_RADIO_BUTTON (check_2_cycle_rate), check_default_cycle_rate_group);
|
||||
check_default_cycle_rate_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (check_2_cycle_rate));
|
||||
|
||||
vbox33 = gtk_vbox_new (FALSE, 0);
|
||||
gtk_widget_show (vbox33);
|
||||
gtk_container_add (GTK_CONTAINER (alignment9), vbox33);
|
||||
label94 = gtk_label_new (_("Big speedup! Works well with many games."));
|
||||
gtk_widget_show (label94);
|
||||
gtk_box_pack_start (GTK_BOX (vbox61), label94, FALSE, FALSE, 0);
|
||||
gtk_label_set_line_wrap (GTK_LABEL (label94), TRUE);
|
||||
gtk_misc_set_alignment (GTK_MISC (label94), 0.36, 0.5);
|
||||
|
||||
check_ESC_Hack = gtk_check_button_new_with_mnemonic (_("Escape Hack - Use Esc key to fully exit PCSX2."));
|
||||
gtk_widget_show (check_ESC_Hack);
|
||||
gtk_box_pack_start (GTK_BOX (vbox33), check_ESC_Hack, FALSE, FALSE, 0);
|
||||
check_3_cycle_rate = gtk_radio_button_new_with_mnemonic (NULL, _("Use x3 Cycle Rate"));
|
||||
gtk_widget_show (check_3_cycle_rate);
|
||||
gtk_box_pack_start (GTK_BOX (vbox61), check_3_cycle_rate, FALSE, FALSE, 0);
|
||||
gtk_radio_button_set_group (GTK_RADIO_BUTTON (check_3_cycle_rate), check_default_cycle_rate_group);
|
||||
check_default_cycle_rate_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (check_3_cycle_rate));
|
||||
|
||||
label47 = gtk_label_new (_("<b>Misc</b>"));
|
||||
gtk_widget_show (label47);
|
||||
gtk_frame_set_label_widget (GTK_FRAME (frame14), label47);
|
||||
gtk_label_set_use_markup (GTK_LABEL (label47), TRUE);
|
||||
label95 = gtk_label_new (_("Big speedup, but causes flickering or missing geometry on many games."));
|
||||
gtk_widget_show (label95);
|
||||
gtk_box_pack_start (GTK_BOX (vbox61), label95, FALSE, FALSE, 0);
|
||||
gtk_label_set_line_wrap (GTK_LABEL (label95), TRUE);
|
||||
gtk_misc_set_alignment (GTK_MISC (label95), 0.24, 0.5);
|
||||
|
||||
hseparator1 = gtk_hseparator_new ();
|
||||
gtk_widget_show (hseparator1);
|
||||
gtk_box_pack_start (GTK_BOX (vbox61), hseparator1, FALSE, FALSE, 0);
|
||||
|
||||
label91 = gtk_label_new (_("Important: X2 & X3 sync hacks *will* cause choppy/skippy audio on many FMV movies."));
|
||||
gtk_widget_show (label91);
|
||||
gtk_box_pack_start (GTK_BOX (vbox61), label91, FALSE, FALSE, 0);
|
||||
gtk_label_set_line_wrap (GTK_LABEL (label91), TRUE);
|
||||
|
||||
label90 = gtk_label_new (_("<b>frame37</b>"));
|
||||
gtk_widget_show (label90);
|
||||
gtk_frame_set_label_widget (GTK_FRAME (frame37), label90);
|
||||
gtk_label_set_use_markup (GTK_LABEL (label90), TRUE);
|
||||
|
||||
vbox60 = gtk_vbox_new (FALSE, 0);
|
||||
gtk_widget_show (vbox60);
|
||||
gtk_box_pack_start (GTK_BOX (hbox39), vbox60, FALSE, FALSE, 0);
|
||||
|
||||
check_iop_cycle_rate = gtk_check_button_new_with_mnemonic (_("Enable IOP x2 Cycle Rate"));
|
||||
gtk_widget_show (check_iop_cycle_rate);
|
||||
gtk_box_pack_start (GTK_BOX (vbox60), check_iop_cycle_rate, FALSE, FALSE, 0);
|
||||
|
||||
label96 = gtk_label_new (_("Small speedup, and works well with most games,"));
|
||||
gtk_widget_show (label96);
|
||||
gtk_box_pack_start (GTK_BOX (vbox60), label96, FALSE, FALSE, 0);
|
||||
gtk_label_set_line_wrap (GTK_LABEL (label96), TRUE);
|
||||
|
||||
check_wait_cycles_sync_hack = gtk_check_button_new_with_mnemonic (_("WaitCycles Sync Hack"));
|
||||
gtk_widget_show (check_wait_cycles_sync_hack);
|
||||
gtk_box_pack_start (GTK_BOX (vbox60), check_wait_cycles_sync_hack, FALSE, FALSE, 0);
|
||||
|
||||
label97 = gtk_label_new (_("Small speedup. Works well with most games, but it may cause certain games to crash, or freeze up during bootup or stage changes."));
|
||||
gtk_widget_show (label97);
|
||||
gtk_box_pack_start (GTK_BOX (vbox60), label97, FALSE, FALSE, 0);
|
||||
gtk_label_set_line_wrap (GTK_LABEL (label97), TRUE);
|
||||
|
||||
frame36 = gtk_frame_new (NULL);
|
||||
gtk_widget_show (frame36);
|
||||
gtk_box_pack_start (GTK_BOX (vbox59), frame36, FALSE, FALSE, 0);
|
||||
|
||||
alignment31 = gtk_alignment_new (0.5, 0.5, 1, 1);
|
||||
gtk_widget_show (alignment31);
|
||||
gtk_container_add (GTK_CONTAINER (frame36), alignment31);
|
||||
gtk_alignment_set_padding (GTK_ALIGNMENT (alignment31), 0, 0, 12, 0);
|
||||
|
||||
check_ESC_hack = gtk_check_button_new_with_mnemonic (_("Escape Hack - Use Esc key to fully exit PCSX2."));
|
||||
gtk_widget_show (check_ESC_hack);
|
||||
gtk_container_add (GTK_CONTAINER (alignment31), check_ESC_hack);
|
||||
|
||||
label89 = gtk_label_new (_("<b>Miscellaneous</b>"));
|
||||
gtk_widget_show (label89);
|
||||
gtk_frame_set_label_widget (GTK_FRAME (frame36), label89);
|
||||
gtk_label_set_use_markup (GTK_LABEL (label89), TRUE);
|
||||
|
||||
dialog_action_area3 = GTK_DIALOG (SpeedHacksDlg)->action_area;
|
||||
gtk_widget_show (dialog_action_area3);
|
||||
|
@ -646,20 +723,32 @@ create_SpeedHacksDlg (void)
|
|||
/* Store pointers to all widgets, for use by lookup_widget(). */
|
||||
GLADE_HOOKUP_OBJECT_NO_REF (SpeedHacksDlg, SpeedHacksDlg, "SpeedHacksDlg");
|
||||
GLADE_HOOKUP_OBJECT_NO_REF (SpeedHacksDlg, dialog_vbox3, "dialog_vbox3");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, vbox31, "vbox31");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, label43, "label43");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, frame13, "frame13");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, alignment8, "alignment8");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, vbox34, "vbox34");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, check_EE_Double_Sync, "check_EE_Double_Sync");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, check_IOP_Double_Sync, "check_IOP_Double_Sync");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, check_Triple_Sync, "check_Triple_Sync");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, label46, "label46");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, frame14, "frame14");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, alignment9, "alignment9");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, vbox33, "vbox33");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, check_ESC_Hack, "check_ESC_Hack");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, label47, "label47");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, vbox59, "vbox59");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, label88, "label88");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, hbox39, "hbox39");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, frame37, "frame37");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, alignment32, "alignment32");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, vbox61, "vbox61");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, check_default_cycle_rate, "check_default_cycle_rate");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, label98, "label98");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, check_1_5_cycle_rate, "check_1_5_cycle_rate");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, label93, "label93");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, check_2_cycle_rate, "check_2_cycle_rate");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, label94, "label94");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, check_3_cycle_rate, "check_3_cycle_rate");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, label95, "label95");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, hseparator1, "hseparator1");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, label91, "label91");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, label90, "label90");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, vbox60, "vbox60");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, check_iop_cycle_rate, "check_iop_cycle_rate");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, label96, "label96");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, check_wait_cycles_sync_hack, "check_wait_cycles_sync_hack");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, label97, "label97");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, frame36, "frame36");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, alignment31, "alignment31");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, check_ESC_hack, "check_ESC_hack");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, label89, "label89");
|
||||
GLADE_HOOKUP_OBJECT_NO_REF (SpeedHacksDlg, dialog_action_area3, "dialog_action_area3");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, button99, "button99");
|
||||
GLADE_HOOKUP_OBJECT (SpeedHacksDlg, button98, "button98");
|
||||
|
|
|
@ -1217,19 +1217,19 @@ Denormals are Zero - Your CPU makes Floating Point Denormals become Zero, so it
|
|||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkVBox" id="vbox31">
|
||||
<widget class="GtkVBox" id="vbox59">
|
||||
<property name="visible">True</property>
|
||||
<property name="homogeneous">False</property>
|
||||
<property name="spacing">0</property>
|
||||
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label43">
|
||||
<widget class="GtkLabel" id="label88">
|
||||
<property name="visible">True</property>
|
||||
<property name="label" translatable="yes">These hacks will affect the speed of PCSX2 but possibly compromise compatibility.
|
||||
If you have problems, Disable all of these and try again.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_CENTER</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
<property name="wrap">False</property>
|
||||
<property name="selectable">False</property>
|
||||
<property name="xalign">0.5</property>
|
||||
|
@ -1249,111 +1249,385 @@ If you have problems, Disable all of these and try again.</property>
|
|||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkFrame" id="frame13">
|
||||
<widget class="GtkHBox" id="hbox39">
|
||||
<property name="visible">True</property>
|
||||
<property name="label_xalign">0</property>
|
||||
<property name="label_yalign">0.5</property>
|
||||
<property name="shadow_type">GTK_SHADOW_NONE</property>
|
||||
<property name="homogeneous">False</property>
|
||||
<property name="spacing">0</property>
|
||||
|
||||
<child>
|
||||
<widget class="GtkAlignment" id="alignment8">
|
||||
<widget class="GtkFrame" id="frame37">
|
||||
<property name="visible">True</property>
|
||||
<property name="xalign">0.5</property>
|
||||
<property name="yalign">0.5</property>
|
||||
<property name="xscale">1</property>
|
||||
<property name="yscale">1</property>
|
||||
<property name="top_padding">0</property>
|
||||
<property name="bottom_padding">0</property>
|
||||
<property name="left_padding">12</property>
|
||||
<property name="right_padding">0</property>
|
||||
<property name="label_xalign">0</property>
|
||||
<property name="label_yalign">0.5</property>
|
||||
<property name="shadow_type">GTK_SHADOW_ETCHED_IN</property>
|
||||
|
||||
<child>
|
||||
<widget class="GtkVBox" id="vbox34">
|
||||
<widget class="GtkAlignment" id="alignment32">
|
||||
<property name="visible">True</property>
|
||||
<property name="homogeneous">False</property>
|
||||
<property name="spacing">0</property>
|
||||
<property name="xalign">0.5</property>
|
||||
<property name="yalign">0.5</property>
|
||||
<property name="xscale">1</property>
|
||||
<property name="yscale">1</property>
|
||||
<property name="top_padding">0</property>
|
||||
<property name="bottom_padding">0</property>
|
||||
<property name="left_padding">12</property>
|
||||
<property name="right_padding">0</property>
|
||||
|
||||
<child>
|
||||
<widget class="GtkCheckButton" id="check_EE_Double_Sync">
|
||||
<widget class="GtkVBox" id="vbox61">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="label" translatable="yes">EE Sync Hack (x2) - Doubles the cycle rate of the EE.</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="relief">GTK_RELIEF_NORMAL</property>
|
||||
<property name="focus_on_click">True</property>
|
||||
<property name="active">False</property>
|
||||
<property name="inconsistent">False</property>
|
||||
<property name="draw_indicator">True</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
<property name="homogeneous">False</property>
|
||||
<property name="spacing">2</property>
|
||||
|
||||
<child>
|
||||
<widget class="GtkCheckButton" id="check_IOP_Double_Sync">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="label" translatable="yes">IOP Sync Hack (x2) - Doubles the cycle rate of the IOP</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="relief">GTK_RELIEF_NORMAL</property>
|
||||
<property name="focus_on_click">True</property>
|
||||
<property name="active">False</property>
|
||||
<property name="inconsistent">False</property>
|
||||
<property name="draw_indicator">True</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<widget class="GtkRadioButton" id="check_default_cycle_rate">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="label" translatable="yes">Default Cycle Rate</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="relief">GTK_RELIEF_NORMAL</property>
|
||||
<property name="focus_on_click">True</property>
|
||||
<property name="active">False</property>
|
||||
<property name="inconsistent">False</property>
|
||||
<property name="draw_indicator">True</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkCheckButton" id="check_Triple_Sync">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="label" translatable="yes">EE/IOP Sync Hack (x3) - Makes EE and IOP hacks triple the cycle rate. </property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="relief">GTK_RELIEF_NORMAL</property>
|
||||
<property name="focus_on_click">True</property>
|
||||
<property name="active">False</property>
|
||||
<property name="inconsistent">False</property>
|
||||
<property name="draw_indicator">True</property>
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label98">
|
||||
<property name="visible">True</property>
|
||||
<property name="label" translatable="yes">Most compatable option - recommended for everyone with high-end machines.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
<property name="wrap">True</property>
|
||||
<property name="selectable">False</property>
|
||||
<property name="xalign">0.289999991655</property>
|
||||
<property name="yalign">0.5</property>
|
||||
<property name="xpad">0</property>
|
||||
<property name="ypad">0</property>
|
||||
<property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
|
||||
<property name="width_chars">-1</property>
|
||||
<property name="single_line_mode">False</property>
|
||||
<property name="angle">0</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkRadioButton" id="check_1_5_cycle_rate">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="label" translatable="yes">Use x1.5 Cycle Rate</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="relief">GTK_RELIEF_NORMAL</property>
|
||||
<property name="focus_on_click">True</property>
|
||||
<property name="active">False</property>
|
||||
<property name="inconsistent">False</property>
|
||||
<property name="draw_indicator">True</property>
|
||||
<property name="group">check_default_cycle_rate</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label93">
|
||||
<property name="visible">True</property>
|
||||
<property name="label" translatable="yes">Moderate speedup, and works well with most games.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
<property name="wrap">True</property>
|
||||
<property name="selectable">False</property>
|
||||
<property name="xalign">0.289999991655</property>
|
||||
<property name="yalign">0.5</property>
|
||||
<property name="xpad">0</property>
|
||||
<property name="ypad">0</property>
|
||||
<property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
|
||||
<property name="width_chars">-1</property>
|
||||
<property name="single_line_mode">False</property>
|
||||
<property name="angle">0</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkRadioButton" id="check_2_cycle_rate">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="label" translatable="yes">Use x2 Cycle Rate</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="relief">GTK_RELIEF_NORMAL</property>
|
||||
<property name="focus_on_click">True</property>
|
||||
<property name="active">False</property>
|
||||
<property name="inconsistent">False</property>
|
||||
<property name="draw_indicator">True</property>
|
||||
<property name="group">check_default_cycle_rate</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label94">
|
||||
<property name="visible">True</property>
|
||||
<property name="label" translatable="yes">Big speedup! Works well with many games.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
<property name="wrap">True</property>
|
||||
<property name="selectable">False</property>
|
||||
<property name="xalign">0.360000014305</property>
|
||||
<property name="yalign">0.5</property>
|
||||
<property name="xpad">0</property>
|
||||
<property name="ypad">0</property>
|
||||
<property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
|
||||
<property name="width_chars">-1</property>
|
||||
<property name="single_line_mode">False</property>
|
||||
<property name="angle">0</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkRadioButton" id="check_3_cycle_rate">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="label" translatable="yes">Use x3 Cycle Rate</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="relief">GTK_RELIEF_NORMAL</property>
|
||||
<property name="focus_on_click">True</property>
|
||||
<property name="active">False</property>
|
||||
<property name="inconsistent">False</property>
|
||||
<property name="draw_indicator">True</property>
|
||||
<property name="group">check_default_cycle_rate</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label95">
|
||||
<property name="visible">True</property>
|
||||
<property name="label" translatable="yes">Big speedup, but causes flickering or missing geometry on many games.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
<property name="wrap">True</property>
|
||||
<property name="selectable">False</property>
|
||||
<property name="xalign">0.239999994636</property>
|
||||
<property name="yalign">0.5</property>
|
||||
<property name="xpad">0</property>
|
||||
<property name="ypad">0</property>
|
||||
<property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
|
||||
<property name="width_chars">-1</property>
|
||||
<property name="single_line_mode">False</property>
|
||||
<property name="angle">0</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkHSeparator" id="hseparator1">
|
||||
<property name="visible">True</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label91">
|
||||
<property name="visible">True</property>
|
||||
<property name="label" translatable="yes">Important: X2 & X3 sync hacks *will* cause choppy/skippy audio on many FMV movies.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
<property name="wrap">True</property>
|
||||
<property name="selectable">False</property>
|
||||
<property name="xalign">0.5</property>
|
||||
<property name="yalign">0.5</property>
|
||||
<property name="xpad">0</property>
|
||||
<property name="ypad">0</property>
|
||||
<property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
|
||||
<property name="width_chars">-1</property>
|
||||
<property name="single_line_mode">False</property>
|
||||
<property name="angle">0</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
</widget>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label90">
|
||||
<property name="visible">True</property>
|
||||
<property name="label" translatable="yes"><b>frame37</b></property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
<property name="wrap">False</property>
|
||||
<property name="selectable">False</property>
|
||||
<property name="xalign">0.5</property>
|
||||
<property name="yalign">0.5</property>
|
||||
<property name="xpad">0</property>
|
||||
<property name="ypad">0</property>
|
||||
<property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
|
||||
<property name="width_chars">-1</property>
|
||||
<property name="single_line_mode">False</property>
|
||||
<property name="angle">0</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="type">label_item</property>
|
||||
</packing>
|
||||
</child>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">True</property>
|
||||
<property name="fill">True</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label46">
|
||||
<widget class="GtkVBox" id="vbox60">
|
||||
<property name="visible">True</property>
|
||||
<property name="label" translatable="yes"><b>Sync Hacks</b></property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
<property name="wrap">False</property>
|
||||
<property name="selectable">False</property>
|
||||
<property name="xalign">0.5</property>
|
||||
<property name="yalign">0.5</property>
|
||||
<property name="xpad">0</property>
|
||||
<property name="ypad">0</property>
|
||||
<property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
|
||||
<property name="width_chars">-1</property>
|
||||
<property name="single_line_mode">False</property>
|
||||
<property name="angle">0</property>
|
||||
<property name="homogeneous">False</property>
|
||||
<property name="spacing">0</property>
|
||||
|
||||
<child>
|
||||
<widget class="GtkCheckButton" id="check_iop_cycle_rate">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="label" translatable="yes">Enable IOP x2 Cycle Rate</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="relief">GTK_RELIEF_NORMAL</property>
|
||||
<property name="focus_on_click">True</property>
|
||||
<property name="active">False</property>
|
||||
<property name="inconsistent">False</property>
|
||||
<property name="draw_indicator">True</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label96">
|
||||
<property name="visible">True</property>
|
||||
<property name="label" translatable="yes">Small speedup, and works well with most games,</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
<property name="wrap">True</property>
|
||||
<property name="selectable">False</property>
|
||||
<property name="xalign">0.5</property>
|
||||
<property name="yalign">0.5</property>
|
||||
<property name="xpad">0</property>
|
||||
<property name="ypad">0</property>
|
||||
<property name="mnemonic_widget">check_iop_cycle_rate</property>
|
||||
<property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
|
||||
<property name="width_chars">-1</property>
|
||||
<property name="single_line_mode">False</property>
|
||||
<property name="angle">0</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkCheckButton" id="check_wait_cycles_sync_hack">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="label" translatable="yes">WaitCycles Sync Hack</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="relief">GTK_RELIEF_NORMAL</property>
|
||||
<property name="focus_on_click">True</property>
|
||||
<property name="active">False</property>
|
||||
<property name="inconsistent">False</property>
|
||||
<property name="draw_indicator">True</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label97">
|
||||
<property name="visible">True</property>
|
||||
<property name="label" translatable="yes">Small speedup. Works well with most games, but it may cause certain games to crash, or freeze up during bootup or stage changes.</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
<property name="wrap">True</property>
|
||||
<property name="selectable">False</property>
|
||||
<property name="xalign">0.5</property>
|
||||
<property name="yalign">0.5</property>
|
||||
<property name="xpad">0</property>
|
||||
<property name="ypad">0</property>
|
||||
<property name="mnemonic_widget">check_wait_cycles_sync_hack</property>
|
||||
<property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
|
||||
<property name="width_chars">-1</property>
|
||||
<property name="single_line_mode">False</property>
|
||||
<property name="angle">0</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="type">label_item</property>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
</widget>
|
||||
|
@ -1365,14 +1639,14 @@ If you have problems, Disable all of these and try again.</property>
|
|||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkFrame" id="frame14">
|
||||
<widget class="GtkFrame" id="frame36">
|
||||
<property name="visible">True</property>
|
||||
<property name="label_xalign">0</property>
|
||||
<property name="label_yalign">0.5</property>
|
||||
<property name="shadow_type">GTK_SHADOW_NONE</property>
|
||||
<property name="shadow_type">GTK_SHADOW_ETCHED_IN</property>
|
||||
|
||||
<child>
|
||||
<widget class="GtkAlignment" id="alignment9">
|
||||
<widget class="GtkAlignment" id="alignment31">
|
||||
<property name="visible">True</property>
|
||||
<property name="xalign">0.5</property>
|
||||
<property name="yalign">0.5</property>
|
||||
|
@ -1384,38 +1658,25 @@ If you have problems, Disable all of these and try again.</property>
|
|||
<property name="right_padding">0</property>
|
||||
|
||||
<child>
|
||||
<widget class="GtkVBox" id="vbox33">
|
||||
<widget class="GtkCheckButton" id="check_ESC_hack">
|
||||
<property name="visible">True</property>
|
||||
<property name="homogeneous">False</property>
|
||||
<property name="spacing">0</property>
|
||||
|
||||
<child>
|
||||
<widget class="GtkCheckButton" id="check_ESC_Hack">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="label" translatable="yes">Escape Hack - Use Esc key to fully exit PCSX2.</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="relief">GTK_RELIEF_NORMAL</property>
|
||||
<property name="focus_on_click">True</property>
|
||||
<property name="active">False</property>
|
||||
<property name="inconsistent">False</property>
|
||||
<property name="draw_indicator">True</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="label" translatable="yes">Escape Hack - Use Esc key to fully exit PCSX2.</property>
|
||||
<property name="use_underline">True</property>
|
||||
<property name="relief">GTK_RELIEF_NORMAL</property>
|
||||
<property name="focus_on_click">True</property>
|
||||
<property name="active">False</property>
|
||||
<property name="inconsistent">False</property>
|
||||
<property name="draw_indicator">True</property>
|
||||
</widget>
|
||||
</child>
|
||||
</widget>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label47">
|
||||
<widget class="GtkLabel" id="label89">
|
||||
<property name="visible">True</property>
|
||||
<property name="label" translatable="yes"><b>Misc</b></property>
|
||||
<property name="label" translatable="yes"><b>Miscellaneous</b></property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
|
@ -1437,15 +1698,15 @@ If you have problems, Disable all of these and try again.</property>
|
|||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">True</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">True</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">False</property>
|
||||
</packing>
|
||||
</child>
|
||||
</widget>
|
||||
|
|
Loading…
Reference in New Issue