summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2012-09-28 00:12:50 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2012-09-28 00:12:50 +0000
commitd1d8c8a66d77afc1e7eb01ee159019325cffe77c (patch)
tree8665d35645dcfc9d0ae8f8151772554b74119aa1
parenta602f4591fefa9e560a49395c9d4a7a6a126a4c5 (diff)
downloadpcsxr-d1d8c8a66d77afc1e7eb01ee159019325cffe77c.tar.gz
Fix missing return statement.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@80046 e17a0e51-4ae3-4d35-97c3-1a29b211df97
-rw-r--r--macosx/PcsxrPlugin.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/PcsxrPlugin.m b/macosx/PcsxrPlugin.m
index f286d99b..b1d5a8e6 100644
--- a/macosx/PcsxrPlugin.m
+++ b/macosx/PcsxrPlugin.m
@@ -35,7 +35,7 @@
case PSE_LT_SPU:
case PSE_LT_PAD:
case PSE_LT_NET:
- [NSString stringWithFormat:@"Plugin%@", [PcsxrPlugin prefixForType:aType]];
+ return [NSString stringWithFormat:@"Plugin%@", [PcsxrPlugin prefixForType:aType]];
break;
default:
return @"";