aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schickel2011-11-26 17:40:00 +0100
committerJohannes Schickel2011-11-26 17:40:00 +0100
commitb9d1718fe1fc9649515ff4415a8668044c8a7380 (patch)
tree8c3a22ae7785dee576c161b04a933eed5c9a3cc2
parent50c44aacf41cc0bb21f98b55afa659a3878233ae (diff)
downloadscummvm-rg350-b9d1718fe1fc9649515ff4415a8668044c8a7380.tar.gz
scummvm-rg350-b9d1718fe1fc9649515ff4415a8668044c8a7380.tar.bz2
scummvm-rg350-b9d1718fe1fc9649515ff4415a8668044c8a7380.zip
ALL: unrecognised -> unrecognized.
-rw-r--r--audio/softsynth/mt32/synth.cpp2
-rwxr-xr-xconfigure4
-rw-r--r--devtools/create_lure/process_actions.cpp2
-rw-r--r--engines/sword2/console.cpp2
4 files changed, 5 insertions, 5 deletions
diff --git a/audio/softsynth/mt32/synth.cpp b/audio/softsynth/mt32/synth.cpp
index 322b864b6e..8c6c3193a9 100644
--- a/audio/softsynth/mt32/synth.cpp
+++ b/audio/softsynth/mt32/synth.cpp
@@ -801,7 +801,7 @@ void Synth::writeSysex(unsigned char device, const Bit8u *sysex, Bit32u len) {
}
}
if (regionNum == NUM_REGIONS) {
- printDebug("Sysex write to unrecognised address %06x, len %d", MT32EMU_SYSEXMEMADDR(addr), len);
+ printDebug("Sysex write to unrecognized address %06x, len %d", MT32EMU_SYSEXMEMADDR(addr), len);
break;
}
Bit32u next = region->next(addr, len);
diff --git a/configure b/configure
index 2acb24d5d3..edea8ee744 100755
--- a/configure
+++ b/configure
@@ -423,14 +423,14 @@ option_help() {
# Show an error about an unknown option
option_error() {
- echo "error: unrecognised option: $ac_option
+ echo "error: unrecognized option: $ac_option
Try \`$0 --help' for more information." >&2
exit 1
}
# Show an error about an unknown engine
engine_option_error() {
- echo "error: unrecognised engine: $1
+ echo "error: unrecognized engine: $1
Try \`$0 --help' for more information." >&2
exit 1
}
diff --git a/devtools/create_lure/process_actions.cpp b/devtools/create_lure/process_actions.cpp
index 8539391d57..db965730cb 100644
--- a/devtools/create_lure/process_actions.cpp
+++ b/devtools/create_lure/process_actions.cpp
@@ -255,7 +255,7 @@ uint16 process_action_sequence_entry(int supportIndex, byte *data, uint16 remain
// Replace code offset with an index
params[0] = index;
else {
- printf("\nEncountered unrecognised NPC code jump point: %xh\n", params[0]);
+ printf("\nEncountered unrecognized NPC code jump point: %xh\n", params[0]);
exit(1);
}
break;
diff --git a/engines/sword2/console.cpp b/engines/sword2/console.cpp
index 957b2431e0..28e2e8ce7b 100644
--- a/engines/sword2/console.cpp
+++ b/engines/sword2/console.cpp
@@ -446,7 +446,7 @@ bool Debugger::Cmd_ResLook(int argc, const char **argv) {
DebugPrintf("<menu icon> %s\n", _vm->_resman->fetchName(res));
break;
default:
- DebugPrintf("unrecognised fileType %d\n", type);
+ DebugPrintf("unrecognized fileType %d\n", type);
break;
}