aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sfx/player/players.cpp
diff options
context:
space:
mode:
authorMax Horn2009-02-15 22:34:41 +0000
committerMax Horn2009-02-15 22:34:41 +0000
commit29611bc7ead4d3d5fc9df63c04dd9e2577805557 (patch)
tree42d26aab7ab2e7e97fe5b4763281d8071d878eed /engines/sci/sfx/player/players.cpp
parent921e6ff5cf3944c1a62a3ad9a91c29bb21aa9942 (diff)
downloadscummvm-rg350-29611bc7ead4d3d5fc9df63c04dd9e2577805557.tar.gz
scummvm-rg350-29611bc7ead4d3d5fc9df63c04dd9e2577805557.tar.bz2
scummvm-rg350-29611bc7ead4d3d5fc9df63c04dd9e2577805557.zip
SCI: Run astyle to make the code be more compliant with our Code Formatting Guidelines: sfx dir
svn-id: r38322
Diffstat (limited to 'engines/sci/sfx/player/players.cpp')
-rw-r--r--engines/sci/sfx/player/players.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/engines/sci/sfx/player/players.cpp b/engines/sci/sfx/player/players.cpp
index eafff46bc3..e4d56c45f3 100644
--- a/engines/sci/sfx/player/players.cpp
+++ b/engines/sci/sfx/player/players.cpp
@@ -37,8 +37,7 @@ sfx_player_t *sfx_players[] = {
};
sfx_player_t *
-sfx_find_player(char *name)
-{
+sfx_find_player(char *name) {
if (!name) {
/* Implement platform policy here */
@@ -46,7 +45,7 @@ sfx_find_player(char *name)
} else {
int n = 0;
while (sfx_players[n] &&
- strcasecmp(sfx_players[n]->name, name))
+ strcasecmp(sfx_players[n]->name, name))
++n;
return sfx_players[n];