aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/include/sfx_timer.h
diff options
context:
space:
mode:
authorPaweł Kołodziejski2009-02-21 16:08:04 +0000
committerPaweł Kołodziejski2009-02-21 16:08:04 +0000
commit1ee65390cd634ba9b432843f11d51cdff0401320 (patch)
tree1dfb39378a6c5b6e6b2c261e3b7420958ec142ee /engines/sci/include/sfx_timer.h
parent709d98be7c1d800c9102a28dee937670521f206f (diff)
downloadscummvm-rg350-1ee65390cd634ba9b432843f11d51cdff0401320.tar.gz
scummvm-rg350-1ee65390cd634ba9b432843f11d51cdff0401320.tar.bz2
scummvm-rg350-1ee65390cd634ba9b432843f11d51cdff0401320.zip
formating
svn-id: r38705
Diffstat (limited to 'engines/sci/include/sfx_timer.h')
-rw-r--r--engines/sci/include/sfx_timer.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/sci/include/sfx_timer.h b/engines/sci/include/sfx_timer.h
index 6342503121..3f75777199 100644
--- a/engines/sci/include/sfx_timer.h
+++ b/engines/sci/include/sfx_timer.h
@@ -33,8 +33,7 @@ namespace Sci {
typedef struct {
int delay_ms; /* Approximate delay (in milliseconds) between calls */
- int
- (*init)(void (*callback)(void *data), void *data);
+ int (*init)(void (*callback)(void *data), void *data);
/* Initializes the timer
** Parameters: (void* -> void) callback:
** 'data' must contain the next argument:
@@ -44,8 +43,7 @@ typedef struct {
** This function is called exactly once (provided that the timer is used at all).
*/
- int
- (*exit)(void);
+ int (*exit)(void);
/* Stops the timer
** Returns : (int) SFX_OK on success, SFX_ERROR on failure
** All resources allocated with the timer should be freed as an effect