summaryrefslogtreecommitdiff
path: root/main.h
diff options
context:
space:
mode:
authorDavid Guillen Fandos2021-03-10 18:39:43 +0100
committerDavid Guillen Fandos2021-03-10 18:41:37 +0100
commit5127f4b5ccb723f7572b9edc509cf78366153e25 (patch)
tree126b17d78379004e2204bad41bc5ddda202fef44 /main.h
parentbd36c9c77dcbd7c6c91159071fa92bdb2d7b0d78 (diff)
downloadpicogpsp-5127f4b5ccb723f7572b9edc509cf78366153e25.tar.gz
picogpsp-5127f4b5ccb723f7572b9edc509cf78366153e25.tar.bz2
picogpsp-5127f4b5ccb723f7572b9edc509cf78366153e25.zip
Remove PSP-specific stuff from MIPS backend
This is unnecessary since newlib supports all file I/O. This is needed for other mips ports
Diffstat (limited to 'main.h')
-rw-r--r--main.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/main.h b/main.h
index e0aae95..dbb839f 100644
--- a/main.h
+++ b/main.h
@@ -94,11 +94,7 @@ void main_write_savestate(void);
void main_read_savestate(void);
-#ifdef PSP
-u32 file_length(const char *filename, s32 dummy);
-#else
-u32 file_length(const char *dummy, FILE *fp);
-#endif
+u32 file_length(FILE *fp);
extern u32 num_skipped_frames;
extern int dynarec_enable;