From 652adc81a4ed787ff1b2fb2dbe2c49c2a39e552b Mon Sep 17 00:00:00 2001 From: OV2 Date: Wed, 3 Jan 2024 00:20:56 +0100 Subject: [PATCH] win32: fix libretro build --- port.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/port.h b/port.h index 99afd281..5b3c3b83 100644 --- a/port.h +++ b/port.h @@ -32,6 +32,7 @@ #define RIGHTSHIFT_int16_IS_SAR #define RIGHTSHIFT_int32_IS_SAR #ifndef __LIBRETRO__ + #endif //__LIBRETRO__ #endif @@ -124,7 +125,7 @@ typedef size_t pint; #define S9xDisplayString DisplayStringFromBottom #ifdef __WIN32__ -#ifndef SNES9X_QT +#if !defined(SNES9X_QT) && !defined(__LIBRETRO__) void SetInfoDlgColor(unsigned char, unsigned char, unsigned char); #define SET_UI_COLOR(r,g,b) SetInfoDlgColor(r,g,b) #endif