mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-12-13 04:36:59 +00:00
fix trivial compiler warnings
This commit is contained in:
parent
de4bf7c2c1
commit
b51584dc7b
6 changed files with 8 additions and 10 deletions
|
|
@ -283,7 +283,7 @@ private:
|
|||
{
|
||||
if (itr.chunkIndex != dbgRange.chunkIndex)
|
||||
continue;
|
||||
if (itr.offset < (dbgRange.offset + dbgRange.size) && (itr.offset + itr.size) >(dbgRange.offset))
|
||||
if (itr.offset < (dbgRange.offset + dbgRange.size) && (itr.offset + itr.size) > dbgRange.offset)
|
||||
cemu_assert_error();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue