Skip to content

Commit

Permalink
DEVTOOLS: Fix error in create_mortdat. Thanks to LordHoto for pointin…
Browse files Browse the repository at this point in the history
…g it out
  • Loading branch information
Strangerke committed Aug 14, 2013
1 parent b830f68 commit 1731d25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions devtools/create_mortdat/create_mortdat.cpp
Expand Up @@ -134,8 +134,8 @@ void writeFontBlock() {
mortCom.seek(knownAddr[i]);
mortCom.read(checkBuffer, 7);

if ((checkBuffer[0] == 0x59) && (checkBuffer[1] == 0x5B) && (checkBuffer[2] == 0x58) ||
(checkBuffer[3] == 0xC3) && (checkBuffer[4] == 0xE8) && (checkBuffer[5] == 0xD6) ||
if ((checkBuffer[0] == 0x59) && (checkBuffer[1] == 0x5B) && (checkBuffer[2] == 0x58) &&
(checkBuffer[3] == 0xC3) && (checkBuffer[4] == 0xE8) && (checkBuffer[5] == 0xD6) &&
(checkBuffer[6] == 0x02)) {
break;
}
Expand Down

0 comments on commit 1731d25

Please sign in to comment.