[Core/CDD] fixed compilation error introduced in 3b95fdf328

This commit is contained in:
ekeeke 2024-09-01 14:20:52 +02:00
parent d178c7bbe1
commit 7717557cb8

View File

@ -483,7 +483,7 @@ INLINE void gfx_render(uint32 bufferIndex, uint32 width)
uint32 yoffset = (int16) *gfx.tracePtr++;
/* handle trace vector address overflow */
if (gfx.tracePtr == (uint16 *)(scd.word_ram_2M + 0x40000)
if (gfx.tracePtr == (uint16 *)(scd.word_ram_2M + 0x40000))
{
gfx.tracePtr = (uint16 *)(scd.word_ram_2M);
}