aboutsummaryrefslogtreecommitdiff
path: root/libpcsxcore/psxcommon.c
diff options
context:
space:
mode:
authornotaz2011-06-07 12:40:49 +0300
committernotaz2011-06-07 12:48:07 +0300
commitab948f7e6d437dddd070000f36489d7e983eb4ad (patch)
tree8a9508658adce7f821016ea467458ddd5a6f6b1c /libpcsxcore/psxcommon.c
parent808a13bdcc83e7b0dec878bbcfc7774e2029b724 (diff)
downloadpcsx_rearmed-ab948f7e6d437dddd070000f36489d7e983eb4ad.tar.gz
pcsx_rearmed-ab948f7e6d437dddd070000f36489d7e983eb4ad.tar.bz2
pcsx_rearmed-ab948f7e6d437dddd070000f36489d7e983eb4ad.zip
enable Wall warnings by default
still disable it in some cases (instead of fixing) to avoid drifting from upstream projects too much.
Diffstat (limited to 'libpcsxcore/psxcommon.c')
-rw-r--r--libpcsxcore/psxcommon.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/libpcsxcore/psxcommon.c b/libpcsxcore/psxcommon.c
index ea655df..8313304 100644
--- a/libpcsxcore/psxcommon.c
+++ b/libpcsxcore/psxcommon.c
@@ -57,7 +57,12 @@ void EmuUpdate() {
SysUpdate();
ApplyCheats();
- pl_frame_limit();
+
+ // reamed hack
+ {
+ extern void pl_frame_limit(void);
+ pl_frame_limit();
+ }
}
void __Log(char *fmt, ...) {