From d542c669365badce2a765502b01e696153e6103d Mon Sep 17 00:00:00 2001
From: Wohlstand <[EMAIL REDACTED]>
Date: Wed, 4 Oct 2023 15:24:14 +0300
Subject: [PATCH] blaarg_common.h: Fixed the MSVC 2015 condition
The 1910 is the olderst version for MSVC 2017, so, it should be >= rather than >.
https://github.com/libgme/game-music-emu/commit/8d5b61f3a5c9c50c3be9b1121d2d79502eee6b4e#commitcomment-129106531
---
gme/blargg_common.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gme/blargg_common.h b/gme/blargg_common.h
index a67753f..d1877d7 100644
--- a/gme/blargg_common.h
+++ b/gme/blargg_common.h
@@ -27,7 +27,7 @@
#define STATIC_CAST(T,expr) ((T) (expr))
#endif
-#if !defined(_MSC_VER) || _MSC_VER > 1910
+#if !defined(_MSC_VER) || _MSC_VER >= 1910
#define blaarg_static_assert(cond, msg) static_assert(cond, msg)
#else
#define blaarg_static_assert(cond, msg) assert(cond)