diff options
| author | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2012-09-28 00:12:50 +0000 |
|---|---|---|
| committer | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2012-09-28 00:12:50 +0000 |
| commit | d1d8c8a66d77afc1e7eb01ee159019325cffe77c (patch) | |
| tree | 8665d35645dcfc9d0ae8f8151772554b74119aa1 /macosx | |
| parent | a602f4591fefa9e560a49395c9d4a7a6a126a4c5 (diff) | |
| download | pcsxr-d1d8c8a66d77afc1e7eb01ee159019325cffe77c.tar.gz | |
Fix missing return statement.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@80046 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx')
| -rw-r--r-- | macosx/PcsxrPlugin.m | 2 |
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 @""; |
