From 7717557cb8e8bc0f44523c5a67df7ee89687d3f9 Mon Sep 17 00:00:00 2001 From: ekeeke Date: Sun, 1 Sep 2024 14:20:52 +0200 Subject: [PATCH] [Core/CDD] fixed compilation error introduced in https://github.com/ekeeke/Genesis-Plus-GX/commit/3b95fdf32864f7d4574e985a85e7299a3e3f3e72 --- core/cd_hw/gfx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/cd_hw/gfx.c b/core/cd_hw/gfx.c index 81b8087..9221f50 100644 --- a/core/cd_hw/gfx.c +++ b/core/cd_hw/gfx.c @@ -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); }