MMU: rewrite loop to avoid warning

Fixes warning:

```
dolphin/Source/Core/Core/PowerPC/MMU.cpp:278:43: warning: shift count >= width of type [-Wshift-count-overflow]
           addr++, addr_translated++, val >>= 8)
```
This commit is contained in:
Michael Maltese 2017-03-24 11:25:19 -07:00
parent c5cc781205
commit 8387b00f42
1 changed files with 3 additions and 4 deletions

View File

@ -274,12 +274,11 @@ static void WriteToHardware(u32 em_address, const T data)
}
T val = bswap(data);
u32 addr_translated = translated_addr.address;
for (u32 addr = em_address; addr < em_address + sizeof(T);
addr++, addr_translated++, val >>= 8)
for (size_t i = 0; i < sizeof(T); i++, addr_translated++)
{
if (addr == em_address_next_page)
if (em_address + i == em_address_next_page)
addr_translated = addr_next_page.address;
WriteToHardware<flag, u8, true>(addr_translated, (u8)val);
WriteToHardware<flag, u8, true>(addr_translated, static_cast<u8>(val >> (i * 8)));
}
return;
}