ALL: recognise -> recognize

This commit is contained in:
Matthew Hoops 2011-05-25 10:48:51 -04:00
parent 28301e2bd1
commit 0104d56444
2 changed files with 2 additions and 2 deletions

View file

@ -237,7 +237,7 @@ bool MidiParser_XMIDI::loadMusic(byte *data, uint32 size) {
pos += 4;
_num_tracks = 1;
} else if (memcmp(pos, "XDIR", 4)) {
// Not an XMIDI that we recognise
// Not an XMIDI that we recognize
warning("Expected 'XDIR' but found '%c%c%c%c'", pos[0], pos[1], pos[2], pos[3]);
return false;
} else {

View file

@ -1920,7 +1920,7 @@ bool validate_executable() {
dataSegment = 0xAD20;
printf("Detected Spanish version\n");
} else {
printf("Lure executable version not recognised. Checksum = %xh\n", sumTotal);
printf("Lure executable version not recognized. Checksum = %xh\n", sumTotal);
return false;
}