From a9ba725cb32fa75426e62cea64661d515457da68 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sun, 9 Jul 2017 14:16:15 -0400 Subject: [PATCH] TSTHawk: Fix less than ideal video output. Whoops! --- waterbox/pcfx/defs.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/waterbox/pcfx/defs.h b/waterbox/pcfx/defs.h index 5156219336..4ca0af1283 100644 --- a/waterbox/pcfx/defs.h +++ b/waterbox/pcfx/defs.h @@ -42,7 +42,12 @@ typedef int64_t int64; #define final #define gettext_noop(s) (s) #define MDFN_MASTERCLOCK_FIXED(n) ((int64)((double)(n) * (1LL << 32))) -#define MDFN_FastArraySet memset +static INLINE void MDFN_FastArraySet(uint32 *dst, const uint32 value, const size_t count) +{ + uint32 *const end = dst + count; + while (dst < end) + *dst++ = value; +} #define _(a) (a) typedef struct @@ -111,4 +116,3 @@ extern bool Setting_NoSpriteLimit; extern bool Setting_AdpcmBuggy; extern bool Setting_AdpcmNoClicks; extern bool Setting_ChromaInterpolate; -