aboutsummaryrefslogtreecommitdiff
path: root/cheat.c
diff options
context:
space:
mode:
authorneonloop2021-09-07 15:31:11 +0000
committerneonloop2021-09-07 15:31:11 +0000
commitd1bf155304d5643218cf70e58d8fb5191536fb9e (patch)
tree391dfb369fd43e97816cabc4e51a4118de3154df /cheat.c
parent5d178649a6af2963e86e67613470fc31d64e5454 (diff)
downloadpicoarch-d1bf155304d5643218cf70e58d8fb5191536fb9e.tar.gz
picoarch-d1bf155304d5643218cf70e58d8fb5191536fb9e.tar.bz2
picoarch-d1bf155304d5643218cf70e58d8fb5191536fb9e.zip
Enables softpatching for cores loading content from disk
If a core sets need_fullpath, content is patched and written to a file in /tmp. This allows patching content for gpsp and probably others.
Diffstat (limited to 'cheat.c')
-rw-r--r--cheat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cheat.c b/cheat.c
index 4304593..cb644ee 100644
--- a/cheat.c
+++ b/cheat.c
@@ -12,7 +12,7 @@
static size_t parse_count(FILE *file) {
size_t count = 0;
- fscanf(file, " cheats = %ld\n", &count);
+ fscanf(file, " cheats = %lu\n", (unsigned long *)&count);
return count;
}