aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/vm.h
diff options
context:
space:
mode:
authorMax Horn2009-04-22 17:53:29 +0000
committerMax Horn2009-04-22 17:53:29 +0000
commitb1e43f3ca0d4830bd87a99334dc127e9d20555b1 (patch)
tree4a5e89e08c44fd5294dd377741ed349bfa5eb048 /engines/sci/engine/vm.h
parentb98f79fe120f3859cace579d21731f137376d5fb (diff)
downloadscummvm-rg350-b1e43f3ca0d4830bd87a99334dc127e9d20555b1.tar.gz
scummvm-rg350-b1e43f3ca0d4830bd87a99334dc127e9d20555b1.tar.bz2
scummvm-rg350-b1e43f3ca0d4830bd87a99334dc127e9d20555b1.zip
SCI: Changed knames (kernel function name table) to Common::StringList
svn-id: r40078
Diffstat (limited to 'engines/sci/engine/vm.h')
-rw-r--r--engines/sci/engine/vm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/engine/vm.h b/engines/sci/engine/vm.h
index 78b62b7524..9354ac4676 100644
--- a/engines/sci/engine/vm.h
+++ b/engines/sci/engine/vm.h
@@ -756,7 +756,7 @@ void script_map_selectors(EngineState *s, selector_map_t *map);
int script_map_kernel(EngineState *s);
/* Maps kernel functions
-** Parameters: (EngineState *) s: The state which the kernel_names are retrieved from
+** Parameters: (EngineState *) s: The state which the _kernelNames are retrieved from
** Returns : (void)
** This function reads from and writes to s. It is called by script_run().
*/
@@ -776,11 +776,11 @@ reg_t kalloc(EngineState *s, const char *type, int space);
** Returns : (reg_t) The handle
*/
-int has_kernel_function(EngineState *s, const char *kname);
+bool has_kernel_function(EngineState *s, const char *kname);
/* Detects whether a particular kernel function is required in the game
** Parameters: (EngineState *) s: Pointer to the EngineState to operate on
** (const char *) kname: The name of the desired kernel function
-** Returns : (int) 1 if the kernel function is listed in the kernel table,
+** Returns : (bool) 1 if the kernel function is listed in the kernel table,
** 0 otherwise
*/