From b6b2beab4846d5579514aed399d7eab56d6d02f0 Mon Sep 17 00:00:00 2001 From: "SND\\MaddTheSane_cp" Date: Sat, 22 Jun 2013 19:55:35 +0000 Subject: Ignore files passed via the command line if we're parsing. Calls to GUI functions should happen on the main thread. Put the [NSApp presentError:] in a block to the main thread. Put some bools in PcsxrController inside a struct with a size of 1. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@85488 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- macosx/ARCBridge.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'macosx/ARCBridge.h') diff --git a/macosx/ARCBridge.h b/macosx/ARCBridge.h index 5a747bdd..ea274b84 100644 --- a/macosx/ARCBridge.h +++ b/macosx/ARCBridge.h @@ -14,6 +14,7 @@ #define SUPERDEALLOC #define RELEASEOBJ(obj) #define RETAINOBJ(obj) obj +#define RETAINOBJNORETURN(obj) #define AUTORELEASEOBJ(obj) obj #define AUTORELEASEOBJNORETURN(obj) #define BRIDGE(toType, obj) (__bridge toType)(obj) @@ -24,6 +25,7 @@ #define SUPERDEALLOC [super dealloc] #define RELEASEOBJ(obj) [obj release] #define RETAINOBJ(obj) [obj retain] +#define RETAINOBJNORETURN(obj) [obj retain] #define AUTORELEASEOBJ(obj) [obj autorelease] #define AUTORELEASEOBJNORETURN(obj) [obj autorelease] #define BRIDGE(toType, obj) (toType)obj -- cgit v1.2.3