mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-22 05:45:38 +00:00
CPU: Warning fix
This commit is contained in:
parent
34ce59eb46
commit
dd204d116e
|
@ -138,7 +138,6 @@ static std::tuple<TickCount, TickCount, TickCount> CalculateMemoryTiming(MEMDELA
|
||||||
static void RecalculateMemoryTimings();
|
static void RecalculateMemoryTimings();
|
||||||
|
|
||||||
static void SetCodePageFastmemProtection(u32 page_index, bool writable);
|
static void SetCodePageFastmemProtection(u32 page_index, bool writable);
|
||||||
static void SetLUTFastmemProtection(u32 page_index, bool writable);
|
|
||||||
} // namespace Bus
|
} // namespace Bus
|
||||||
|
|
||||||
#define FIXUP_HALFWORD_OFFSET(size, offset) ((size >= MemoryAccessSize::HalfWord) ? (offset) : ((offset) & ~1u))
|
#define FIXUP_HALFWORD_OFFSET(size, offset) ((size >= MemoryAccessSize::HalfWord) ? (offset) : ((offset) & ~1u))
|
||||||
|
|
|
@ -441,6 +441,7 @@ FastMapTable* GetFastMapPointer()
|
||||||
#else
|
#else
|
||||||
s_asm_dispatcher();
|
s_asm_dispatcher();
|
||||||
#endif
|
#endif
|
||||||
|
UnreachableCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue