fixing a silly typo
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3728 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
1fe26436ca
commit
7f131a9045
|
@ -221,7 +221,7 @@ bool ReadAnnotatedAssembly(const char *filename)
|
||||||
// Sanity check
|
// Sanity check
|
||||||
if (hex > last_addr + 3 || hex < last_addr - 3) {
|
if (hex > last_addr + 3 || hex < last_addr - 3) {
|
||||||
static int errors = 0;
|
static int errors = 0;
|
||||||
ERROR_INFO(DSPLLE, "Got Insane Hex Digit %04x (%04x) from %s", hex, last_addr, line);
|
INFO_LOG(DSPLLE, "Got Insane Hex Digit %04x (%04x) from %s", hex, last_addr, line);
|
||||||
errors++;
|
errors++;
|
||||||
if (errors > 10)
|
if (errors > 10)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue