mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-12-01 00:21:14 +00:00
Fix for snprintf for > VS2015
This commit is contained in:
parent
b92b9d64da
commit
4a1ca1712e
2 changed files with 5 additions and 0 deletions
|
@ -5,7 +5,9 @@
|
|||
#define DSOUND_SUPPORT 1
|
||||
#define WINMIDI_SUPPORT 1
|
||||
|
||||
#if _MSC_VER < 1900
|
||||
#define snprintf _snprintf
|
||||
#endif
|
||||
#define strcasecmp _stricmp
|
||||
|
||||
#if _MSC_VER < 1500
|
||||
|
|
|
@ -14,7 +14,10 @@
|
|||
#define WINMIDI_SUPPORT 1
|
||||
#define WITH_FLOAT 1
|
||||
|
||||
#if _MSC_VER < 1900
|
||||
#define snprintf _snprintf
|
||||
#endif
|
||||
|
||||
#define strcasecmp _stricmp
|
||||
|
||||
#if _MSC_VER < 1500
|
||||
|
|
Loading…
Reference in a new issue