diff options
| author | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2013-12-29 06:33:41 +0000 |
|---|---|---|
| committer | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2013-12-29 06:33:41 +0000 |
| commit | 13252b2ea464c3a40cc42d01fe178bfd2b421d9b (patch) | |
| tree | f2112c626727dc94012450885fc867fad3e0ee75 /macosx/plugins | |
| parent | 1b6f49b0ef8f8dff2504ea8feabf1f104107e00f (diff) | |
| download | pcsxr-13252b2ea464c3a40cc42d01fe178bfd2b421d9b.tar.gz | |
OS X:
Minor code style change.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@88196 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/plugins')
| -rwxr-xr-x | macosx/plugins/Bladesio1/macsrc/PluginConfigController.m | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/macosx/plugins/Bladesio1/macsrc/PluginConfigController.m b/macosx/plugins/Bladesio1/macsrc/PluginConfigController.m index bce4a722..70ba4970 100755 --- a/macosx/plugins/Bladesio1/macsrc/PluginConfigController.m +++ b/macosx/plugins/Bladesio1/macsrc/PluginConfigController.m @@ -139,9 +139,16 @@ void ReadConfig() int player; switch ([playerMenu indexOfSelectedItem]) { default: - case 0: player = PLAYER_DISABLED; break; - case 1: player = PLAYER_MASTER; break; - case 2: player = PLAYER_SLAVE; break; + case 0: + player = PLAYER_DISABLED; + break; + + case 1: + player = PLAYER_MASTER; + break; + case 2: + player = PLAYER_SLAVE; + break; } writeDic[kSioPlayer] = @(player); } |
