ALL: unrecognised -> unrecognized.
This commit is contained in:
parent
50c44aacf4
commit
b9d1718fe1
4 changed files with 5 additions and 5 deletions
|
@ -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);
|
||||
|
|
4
configure
vendored
4
configure
vendored
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue