aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/scriptdebug.cpp
diff options
context:
space:
mode:
authorMax Horn2009-03-12 03:26:47 +0000
committerMax Horn2009-03-12 03:26:47 +0000
commit642bad22d8978ffdfcdd9efaea553f7bd5c7cc9c (patch)
treef5682e55198f5cce21b4e610b9d2a272572415d6 /engines/sci/engine/scriptdebug.cpp
parent40b313c28ee947f3e5a908f56efacbbcedf63a88 (diff)
downloadscummvm-rg350-642bad22d8978ffdfcdd9efaea553f7bd5c7cc9c.tar.gz
scummvm-rg350-642bad22d8978ffdfcdd9efaea553f7bd5c7cc9c.tar.bz2
scummvm-rg350-642bad22d8978ffdfcdd9efaea553f7bd5c7cc9c.zip
SCI: Removed most uses of the 'inline' keyword. It is usually better to let the compiler figure out what to inline. As it is, most of these looked as if they were randomly placed ;)
svn-id: r39352
Diffstat (limited to 'engines/sci/engine/scriptdebug.cpp')
-rw-r--r--engines/sci/engine/scriptdebug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/scriptdebug.cpp b/engines/sci/engine/scriptdebug.cpp
index 27fd60bbf6..388ca6b585 100644
--- a/engines/sci/engine/scriptdebug.cpp
+++ b/engines/sci/engine/scriptdebug.cpp
@@ -101,7 +101,7 @@ const char *_debug_get_input_default() {
return inputbuf;
}
-static inline int _parse_ticks(byte *data, int *offset_p, int size) {
+static int _parse_ticks(byte *data, int *offset_p, int size) {
int ticks = 0;
int tempticks;
int offset = 0;