Fix a bad == comparison typo.

This commit is contained in:
Unknown W. Brackets
2014-07-15 23:33:01 -07:00
parent 30f363a71f
commit 2f90c8d35a
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1252,7 +1252,7 @@ Module *__KernelLoadELFFromPtr(const u8 *ptr, u32 loadAddress, std::string *erro
default:
func.nid = nid;
func.symAddr = exportAddr;
if (ent->name == NULL) {
if (ent->name == 0) {
WARN_LOG_REPORT(HLE, "Exporting func from syslib export: %08x", nid);
}
module->ExportFunc(func);
@@ -1309,7 +1309,7 @@ Module *__KernelLoadELFFromPtr(const u8 *ptr, u32 loadAddress, std::string *erro
default:
var.nid = nid;
var.symAddr = exportAddr;
if (ent->name == NULL) {
if (ent->name == 0) {
WARN_LOG_REPORT(HLE, "Exporting var from syslib export: %08x", nid);
}
module->ExportVar(var);