summaryrefslogtreecommitdiff
path: root/app-emulation/uae/files/uae-0.8.25-struct_uae_wrong_fields_name.diff
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-10-09 18:53:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2017-10-09 18:53:29 +0100
commit4f2d7949f03e1c198bc888f2d05f421d35c57e21 (patch)
treeba5f07bf3f9d22d82e54a462313f5d244036c768 /app-emulation/uae/files/uae-0.8.25-struct_uae_wrong_fields_name.diff
reinit the tree, so we can have metadata
Diffstat (limited to 'app-emulation/uae/files/uae-0.8.25-struct_uae_wrong_fields_name.diff')
-rw-r--r--app-emulation/uae/files/uae-0.8.25-struct_uae_wrong_fields_name.diff18
1 files changed, 18 insertions, 0 deletions
diff --git a/app-emulation/uae/files/uae-0.8.25-struct_uae_wrong_fields_name.diff b/app-emulation/uae/files/uae-0.8.25-struct_uae_wrong_fields_name.diff
new file mode 100644
index 000000000000..cd8d7e00cd8a
--- /dev/null
+++ b/app-emulation/uae/files/uae-0.8.25-struct_uae_wrong_fields_name.diff
@@ -0,0 +1,18 @@
+Somewhere wrong (old) names are used in accessing the preferences structure.
+
+This is just a remainder for the upstream!!
+
+Antonio Ospite <ospite@studenti.unina.it>
+
+diff -pruN uae-0.8.25/src/tui.c uae-0.8.25_patched/src/tui.c
+--- uae-0.8.25/src/tui.c 2006-06-07 17:45:55.000000000 +0200
++++ uae-0.8.25_patched/src/tui.c 2006-06-07 17:55:39.000000000 +0200
+@@ -606,7 +606,7 @@ static void SoundOptions (void)
+ currprefs.sound_freq = atoi (tmp);
+ break;
+ case 5:
+- currprefs.stereo = (currprefs.stereo + 1) % 3;
++ currprefs.sound_stereo = (currprefs.sound_stereo + 1) % 3;
+ break;
+ }
+ }