diff options
author | Max Horn | 2009-02-15 22:34:41 +0000 |
---|---|---|
committer | Max Horn | 2009-02-15 22:34:41 +0000 |
commit | 29611bc7ead4d3d5fc9df63c04dd9e2577805557 (patch) | |
tree | 42d26aab7ab2e7e97fe5b4763281d8071d878eed /engines/sci/sfx/timer/timer_scummvm.cpp | |
parent | 921e6ff5cf3944c1a62a3ad9a91c29bb21aa9942 (diff) | |
download | scummvm-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/timer/timer_scummvm.cpp')
-rw-r--r-- | engines/sci/sfx/timer/timer_scummvm.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/sci/sfx/timer/timer_scummvm.cpp b/engines/sci/sfx/timer/timer_scummvm.cpp index 80fc309d1d..beb57aef6b 100644 --- a/engines/sci/sfx/timer/timer_scummvm.cpp +++ b/engines/sci/sfx/timer/timer_scummvm.cpp @@ -19,13 +19,13 @@ void scummvm_timer_update_internal(void *ptr) { int scummvm_timer_start(void (*func)(void *), void *data) { if (scummvm_timer_callback) { fprintf(stderr, - "Error: Attempt to initialize gametick timer more than once\n"); + "Error: Attempt to initialize gametick timer more than once\n"); return SFX_ERROR; } if (!func) { fprintf(stderr, - "Error: Attempt to initialize gametick timer w/o callback\n"); + "Error: Attempt to initialize gametick timer w/o callback\n"); return SFX_ERROR; } @@ -45,10 +45,10 @@ int scummvm_timer_stop() { sfx_timer_t sfx_timer_scummvm = { "ScummVM", "0.1", - DELAY/1000, 0, + DELAY / 1000, 0, NULL, &scummvm_timer_start, &scummvm_timer_stop, 0, 0 - }; +}; |