summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-12-12 18:40:23 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-12-12 18:40:23 +0000
commitfe9e7ebf889b0b6a208a7c947a92e272f1fa558c (patch)
treeb63875d8b04790f223e0fc0b8d0805e66b6c0ff7
parentdc0c564b64a251a5a3f676ed3ce8272c7cfc82ad (diff)
downloadpcsxr-fe9e7ebf889b0b6a208a7c947a92e272f1fa558c.tar.gz
Fixed missing return type.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@73191 e17a0e51-4ae3-4d35-97c3-1a29b211df97
-rw-r--r--macosx/PcsxrFreezeStateHandler.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/PcsxrFreezeStateHandler.m b/macosx/PcsxrFreezeStateHandler.m
index 99034efa..ae236168 100644
--- a/macosx/PcsxrFreezeStateHandler.m
+++ b/macosx/PcsxrFreezeStateHandler.m
@@ -20,7 +20,7 @@
if (![EmuThread active]) {
[EmuThread run];
}
- [EmuThread defrostAt:theFile];
+ return [EmuThread defrostAt:theFile];
}
@end