summarylogtreecommitdiffstats
path: root/makepkg.patch
blob: 83ce4eca089c6b384ac2779c995f621c5d6aec7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
commit c371c017c24a8d9f60406ea1138644a7135771d4
Author: Dominicentek <dominicentekgaming@gmail.com>
Date:   Mon May 20 19:03:07 2024 +0200

    makepkg patch

diff --git a/.patched b/.patched
new file mode 100644
index 00000000..e69de29b
diff --git a/src/saturn/saturn_rom_extract.cpp b/src/saturn/saturn_rom_extract.cpp
index ccf4069a..6f298f01 100644
--- a/src/saturn/saturn_rom_extract.cpp
+++ b/src/saturn/saturn_rom_extract.cpp
@@ -44,7 +44,7 @@ std::map<std::string, FormatTableEntry> format_table = {
 };
 
 #define EXTRACT_PATH std::filesystem::path(sys_user_path()) / "res"
-#define EXTRACT_ROM "sm64.z64"
+#define EXTRACT_ROM "~/sm64.z64"
 #define ROM_SIZE (8 * 1024 * 1024)
 #define ROM_CHECKSUM 0x3CE60709
 
@@ -402,7 +402,7 @@ int saturn_extract_rom(int type) {
 
     if (status == ROM_OK) return ROM_OK;
     if (status == ROM_MISSING) {
-        pfd::message("Missing ROM","Cannot find sm64.z64\n\nPlease place an unmodified, US Super Mario 64 ROM next to the .exe and name it \"sm64.z64\"", pfd::choice::ok);
+        pfd::message("Missing ROM","Cannot find sm64.z64\n\nPlease place an unmodified, US Super Mario 64 ROM in your home directory and name it \"sm64.z64\"", pfd::choice::ok);
         return ROM_MISSING;
     }
     if (status == ROM_INVALID) {