summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-emulation/uae/files')
-rw-r--r--app-emulation/uae/files/digest-uae-0.8.26-r1 (renamed from app-emulation/uae/files/digest-uae-0.8.26)0
-rw-r--r--app-emulation/uae/files/uae-0.8.25-preserve_home_in_writing_optionsfile.diff28
2 files changed, 0 insertions, 28 deletions
diff --git a/app-emulation/uae/files/digest-uae-0.8.26 b/app-emulation/uae/files/digest-uae-0.8.26-r1
index fb066b85adbe..fb066b85adbe 100644
--- a/app-emulation/uae/files/digest-uae-0.8.26
+++ b/app-emulation/uae/files/digest-uae-0.8.26-r1
diff --git a/app-emulation/uae/files/uae-0.8.25-preserve_home_in_writing_optionsfile.diff b/app-emulation/uae/files/uae-0.8.25-preserve_home_in_writing_optionsfile.diff
deleted file mode 100644
index eee7658d0cd2..000000000000
--- a/app-emulation/uae/files/uae-0.8.25-preserve_home_in_writing_optionsfile.diff
+++ /dev/null
@@ -1,28 +0,0 @@
-Keep saving optionsfile to home dir, even if there is not one when reading
-config for the first time.
-
-Antonio Ospite <ospite@studenti.unina.it>
-
-diff -bpruN uae-0.8.25/src/main.c uae-0.8.25_patched/src/main.c
---- uae-0.8.25/src/main.c 2006-06-07 17:41:49.000000000 +0200
-+++ uae-0.8.25_patched/src/main.c 2006-06-08 20:33:05.000000000 +0200
-@@ -357,6 +357,7 @@ void parse_cmdline (int argc, char **arg
- static void parse_cmdline_and_init_file (int argc, char **argv)
- {
- char *home;
-+ char *pwd_optionsfile;
-
- strcpy (optionsfile, "");
-
-@@ -374,8 +375,9 @@ static void parse_cmdline_and_init_file
- if (! cfgfile_load (&currprefs, optionsfile)) {
- #ifdef OPTIONS_IN_HOME
- /* sam: if not found in $HOME then look in current directory */
-- strcpy (optionsfile, OPTIONSFILENAME);
-- cfgfile_load (&currprefs, optionsfile);
-+ /* ao: but let's use a temporary name, so we save to home dir, yet :) */
-+ strcpy (pwd_optionsfile, OPTIONSFILENAME);
-+ cfgfile_load (&currprefs, pwd_optionsfile);
- #endif
- }
-