Disable a few warnings that are not essential
This commit is contained in:
parent
cf781e94d5
commit
dc586f8509
|
@ -78,7 +78,7 @@ static void add_critical_section(
|
|||
critical_sections[xbox_crit_section] = host_crit_section;
|
||||
}
|
||||
else {
|
||||
EmuWarning("Critical Section key %p already exists\n", xbox_crit_section);
|
||||
DbgPrintf("Critical Section key %p already exists\n", xbox_crit_section);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -442,7 +442,7 @@ size_t VMManager::QuerySize(VAddr addr)
|
|||
--prev_it;
|
||||
}
|
||||
it = std::next(prev_it);
|
||||
EmuWarning(LOG_PREFIX ": QuerySize : querying not the start address of an allocation");
|
||||
//EmuWarning(LOG_PREFIX ": QuerySize : querying not the start address of an allocation");
|
||||
}
|
||||
// We can't just return the size of the vma because it could have been split by ReprotectVMARange so, instead,
|
||||
// we must check the corresponding physical allocation size
|
||||
|
|
Loading…
Reference in New Issue