Fix bug in web evaluate1.

This commit is contained in:
Brad Nelson
2022-07-16 12:50:03 -07:00
parent 8d5eb8d058
commit f0fea679d5

View File

@ -366,9 +366,9 @@ function Evaluate1(rp) {
}
} else {
if (DEBUGGING) { console.log('CANT FIND: ' + GetString(name, len)); }
sp += 4; i32[sp>>2] = name;
sp += 4; i32[sp>>2] = len;
sp += 4; i32[sp>>2] = -1;
sp += 4; i32[sp>>2] = tos; tos = name;
sp += 4; i32[sp>>2] = tos; tos = len;
sp += 4; i32[sp>>2] = tos; tos = -1;
call = i32[g_sys_notfound>>2];
}
}