mirror of
https://github.com/libretro/RetroArch.git
synced 2025-01-26 11:36:01 +00:00
(MSVC2017) Fix build
This commit is contained in:
parent
85fad52104
commit
ac8e80a9e2
@ -25,7 +25,7 @@
|
||||
#include "../verbosity.h"
|
||||
|
||||
#if defined(_MSC_VER) && !defined(_XBOX)
|
||||
#if (_MSC_VER >= 1700)
|
||||
#if (_MSC_VER >= 1700 && _MSC_VER < 1910)
|
||||
/* https://support.microsoft.com/en-us/kb/980263 */
|
||||
#pragma execution_character_set("utf-8")
|
||||
#endif
|
||||
|
@ -1,5 +1,5 @@
|
||||
#if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500)
|
||||
#if (_MSC_VER >= 1700)
|
||||
#if (_MSC_VER >= 1700 && _MSC_VER < 1910)
|
||||
/* https://support.microsoft.com/en-us/kb/980263 */
|
||||
#pragma execution_character_set("utf-8")
|
||||
#endif
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* RetroArch - A frontend for libretro.
|
||||
/* RetroArch - A frontend for libretro.
|
||||
* Copyright (C) 2011-2017 - Daniel De Matteis
|
||||
* Copyright (C) 2016-2019 - Brad Parker
|
||||
*
|
||||
@ -28,7 +28,7 @@
|
||||
#include "../configuration.h"
|
||||
|
||||
#if defined(_MSC_VER) && !defined(_XBOX)
|
||||
#if (_MSC_VER >= 1700)
|
||||
#if (_MSC_VER >= 1700 && _MSC_VER < 1910)
|
||||
/* https://support.microsoft.com/en-us/kb/980263 */
|
||||
#pragma execution_character_set("utf-8")
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user