aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/include
diff options
context:
space:
mode:
authorWillem Jan Palenstijn2009-02-15 20:40:49 +0000
committerWillem Jan Palenstijn2009-02-15 20:40:49 +0000
commitb484e828214db53176403a425c5b26065ce762af (patch)
tree5a570dee4c3ba8736cd97a4278debdb1ec0a7abf /engines/sci/include
parent3d5b349b7c881c6b208ceff7b0960a5a324b561c (diff)
downloadscummvm-rg350-b484e828214db53176403a425c5b26065ce762af.tar.gz
scummvm-rg350-b484e828214db53176403a425c5b26065ce762af.tar.bz2
scummvm-rg350-b484e828214db53176403a425c5b26065ce762af.zip
retreive->retrieve
svn-id: r38296
Diffstat (limited to 'engines/sci/include')
-rw-r--r--engines/sci/include/console.h2
-rw-r--r--engines/sci/include/gfx_res_options.h2
-rw-r--r--engines/sci/include/gfx_widgets.h4
-rw-r--r--engines/sci/include/sbtree.h2
-rw-r--r--engines/sci/include/vm.h2
5 files changed, 6 insertions, 6 deletions
diff --git a/engines/sci/include/console.h b/engines/sci/include/console.h
index e56ab5e461..306582840d 100644
--- a/engines/sci/include/console.h
+++ b/engines/sci/include/console.h
@@ -156,7 +156,7 @@ cmd_param_t
con_getopt(char *opt);
/* Retreives the specified optional parameter
** -- for use within console functions only --
-** Parameters: (char *) opt: The optional parameter to retreive
+** Parameters: (char *) opt: The optional parameter to retrieve
** Returns : (cmd_param_t) The corresponding parameter
** Should only be used if con_hasopt() reports its presence.
*/
diff --git a/engines/sci/include/gfx_res_options.h b/engines/sci/include/gfx_res_options.h
index 8e3149368f..de0fc0b86e 100644
--- a/engines/sci/include/gfx_res_options.h
+++ b/engines/sci/include/gfx_res_options.h
@@ -72,7 +72,7 @@ typedef struct {
short type; /* GFX_RES_ASSIGN_TYPE_* */
union {
- byte factor[3]; /* divide by 16 to retreive factor */
+ byte factor[3]; /* divide by 16 to retrieve factor */
} mod;
} gfx_res_mod_t;
diff --git a/engines/sci/include/gfx_widgets.h b/engines/sci/include/gfx_widgets.h
index 37d5557c7a..791b9335aa 100644
--- a/engines/sci/include/gfx_widgets.h
+++ b/engines/sci/include/gfx_widgets.h
@@ -437,7 +437,7 @@ gfxw_new_port(gfxw_visual_t *visual, gfxw_port_t *predecessor, rect_t area, gfx_
gfxw_port_t *
gfxw_find_port(gfxw_visual_t *visual, int ID);
/* Retrieves a port with the specified ID
-** Parameters: (gfxw_visual_t *) visual: The visual the port is to be retreived from
+** Parameters: (gfxw_visual_t *) visual: The visual the port is to be retrieved from
** (int) ID: The port's ID
** Returns : (gfxw_port_t *) The requested port, or NULL if it didn't exist
** This function is O(1).
@@ -446,7 +446,7 @@ gfxw_find_port(gfxw_visual_t *visual, int ID);
gfxw_port_t *
gfxw_find_default_port(gfxw_visual_t *visual);
/* Retreives the default port from a visual
-** Parameters: (gfxw_visual_t *) visual: The visual the port should be retreived from
+** Parameters: (gfxw_visual_t *) visual: The visual the port should be retrieved from
** Returns : (gfxw_port_t *) The default port, or NULL if no port is present
** The 'default port' is the last port to be instantiated; usually the topmost
** or highest-ranking port.
diff --git a/engines/sci/include/sbtree.h b/engines/sci/include/sbtree.h
index 38f8a71ba1..9fdd1a5f1d 100644
--- a/engines/sci/include/sbtree.h
+++ b/engines/sci/include/sbtree.h
@@ -80,7 +80,7 @@ void *
sbtree_get(sbtree_t *tree, int key);
/* Retreives a key
** Parameters: (sbtree_t *) tree: The tree to search in
-** (int) key: The key to retreive
+** (int) key: The key to retrieve
** Returns : (void *) The value mapped to the key
** If key was not found/invalid, NULL is returned. Note that there is no
** way of distinguishing between keys mapped to NULL and invalid keys,
diff --git a/engines/sci/include/vm.h b/engines/sci/include/vm.h
index 1bf3353c3d..31141126ff 100644
--- a/engines/sci/include/vm.h
+++ b/engines/sci/include/vm.h
@@ -760,7 +760,7 @@ script_map_selectors(struct _state *s, selector_map_t *map);
int
script_map_kernel(struct _state *s);
/* Maps kernel functions
-** Parameters: (state_t *) s: The state which the kernel_names are retreived from
+** Parameters: (state_t *) s: The state which the kernel_names are retrieved from
** Returns : (void)
** This function reads from and writes to s. It is called by script_run().
*/