From deb3c4757b6716efcf4d6d19e37134e9373675bb Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Thu, 3 Nov 2016 11:10:44 +0100 Subject: [PATCH] VS2015 compile fix (nw) --- src/frontend/mame/luaengine.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/frontend/mame/luaengine.cpp b/src/frontend/mame/luaengine.cpp index 4ca7f169835..4b83314fc62 100644 --- a/src/frontend/mame/luaengine.cpp +++ b/src/frontend/mame/luaengine.cpp @@ -26,6 +26,10 @@ #ifdef __clang__ #pragma clang diagnostic ignored "-Wshift-count-overflow" #endif +#if defined(_MSC_VER) +#pragma warning(disable:4503) +#endif + //************************************************************************** // LUA ENGINE //**************************************************************************