From 373c489b01e6634c7c20174ee1f506e93586f2e6 Mon Sep 17 00:00:00 2001 From: Sour Date: Sun, 7 Jul 2019 08:38:45 -0400 Subject: [PATCH] Video: Fixed palette for emphasis bits not being generated when no palette data exists in config --- Core/EmulationSettings.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/EmulationSettings.h b/Core/EmulationSettings.h index bc3a6ca1..701f3d7f 100644 --- a/Core/EmulationSettings.h +++ b/Core/EmulationSettings.h @@ -698,7 +698,7 @@ private: public: EmulationSettings() { - memcpy(_userPalette, _ppuPaletteArgb, sizeof(_userPalette)); + SetUserRgbPalette(_ppuPaletteArgb[0]); } static uint32_t GetMesenVersion()