diff options
| author | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2014-11-10 20:22:50 +0000 |
|---|---|---|
| committer | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2014-11-10 20:22:50 +0000 |
| commit | a96ba176322566d9d15b51c714984affcdfc6355 (patch) | |
| tree | fe6496196975b981955a580d0a0442c235037749 /macosx/Source | |
| parent | 0f8e66e194b903763b6c580599eb47c11f154bdd (diff) | |
OS X: make all ivars either be in the implementation block, or converted to Objective C 2.0 properties.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@92227 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/Source')
| -rw-r--r-- | macosx/Source/EmuThread.h | 4 | ||||
| -rw-r--r-- | macosx/Source/EmuThread.m | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/macosx/Source/EmuThread.h b/macosx/Source/EmuThread.h index 33aa68e0..02f88530 100644 --- a/macosx/Source/EmuThread.h +++ b/macosx/Source/EmuThread.h @@ -15,9 +15,7 @@ typedef NS_ENUM(char, EmuThreadPauseStatus) { PauseStateIsPaused }; -@interface EmuThread : NSObject { - jmp_buf restartJmp; -} +@interface EmuThread : NSObject - (void)EmuThreadRun:(id)anObject; - (void)EmuThreadRunBios:(id)anObject; diff --git a/macosx/Source/EmuThread.m b/macosx/Source/EmuThread.m index 7e3b961b..fbfe1394 100644 --- a/macosx/Source/EmuThread.m +++ b/macosx/Source/EmuThread.m @@ -34,6 +34,7 @@ static pthread_mutex_t eventMutex; @implementation EmuThread { BOOL wasPaused; + jmp_buf restartJmp; } - (void)setUpThread |
