mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 15:17:51 +00:00
Fixed formatting and switch statement warnings
This commit is contained in:
parent
2a4b698f8e
commit
223e76d51d
7 changed files with 13 additions and 11 deletions
|
@ -15,7 +15,7 @@ inline void Read(T &var, const u32 addr) {
|
|||
|
||||
template <typename T>
|
||||
inline void Write(u32 addr, const T data) {
|
||||
ERROR_LOG(NDMA, "unknown Write%lu 0x%08X @ 0x%08X", sizeof(data) * 8, data, addr);
|
||||
ERROR_LOG(NDMA, "unknown Write%lu 0x%08X @ 0x%08X", sizeof(data) * 8, (u32)data, addr);
|
||||
}
|
||||
|
||||
// Explicitly instantiate template functions because we aren't defining this in the header:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue