summaryrefslogtreecommitdiff
path: root/macosx/Source
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/Source')
-rw-r--r--macosx/Source/PcsxrPlugin.h2
-rw-r--r--macosx/Source/PcsxrPlugin.m5
2 files changed, 3 insertions, 4 deletions
diff --git a/macosx/Source/PcsxrPlugin.h b/macosx/Source/PcsxrPlugin.h
index 14d6bca1..2bace47b 100644
--- a/macosx/Source/PcsxrPlugin.h
+++ b/macosx/Source/PcsxrPlugin.h
@@ -27,6 +27,6 @@
- (long)shutdownAs:(int)aType;
- (void)aboutAs:(int)type;
- (void)configureAs:(int)type;
-@property (readonly) BOOL verifyOK;
+- (BOOL)verifyOK;
@end
diff --git a/macosx/Source/PcsxrPlugin.m b/macosx/Source/PcsxrPlugin.m
index 3b43cbb8..ae2be3cc 100644
--- a/macosx/Source/PcsxrPlugin.m
+++ b/macosx/Source/PcsxrPlugin.m
@@ -239,6 +239,8 @@
}
#define PluginSymbolName(type, theName) [[PcsxrPlugin prefixForType:type] stringByAppendingString:theName]
+#define PluginSymbolNameConfigure(type) PluginSymbolName(type, @"configure")
+#define PluginSymbolNameAbout(type) PluginSymbolName(type, @"about")
- (void)runCommand:(id)arg
{
@@ -316,9 +318,6 @@
#endif
}
-#define PluginSymbolNameConfigure(type) PluginSymbolName(type, @"configure")
-#define PluginSymbolNameAbout(type) PluginSymbolName(type, @"about")
-
- (BOOL)hasAboutAs:(int)aType
{
SysLoadSym(pluginRef, [PluginSymbolNameAbout(aType)