mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-12-16 04:08:48 +00:00
MipsStackWalk: Fix s64 -> u32 implicit casting warning
This commit is contained in:
parent
615cd00147
commit
52c17e67a5
@ -108,7 +108,7 @@ namespace MipsStackWalk
|
||||
|
||||
if (entry == INVALIDTARGET)
|
||||
{
|
||||
stop = std::max<s64>(0, (s64)start - LONGEST_FUNCTION);
|
||||
stop = static_cast<u32>(std::max<s64>(0, (s64)start - LONGEST_FUNCTION));
|
||||
}
|
||||
|
||||
for (u32 pc = start; cpu->isValidAddress(pc) && pc >= stop; pc -= 4)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user