diff --git a/src/streamtypes.h b/src/streamtypes.h index 800ce9a7..fc6d305f 100644 --- a/src/streamtypes.h +++ b/src/streamtypes.h @@ -7,14 +7,14 @@ #define _STREAMTYPES_H #ifdef _MSC_VER -#if _MSC_VER < 1400 -#include -#define snprintf _snprintf -#else +#if (_MSC_VER >= 1600) #include +#else +#include #endif #define inline _inline #define strcasecmp _stricmp +#define snprintf _snprintf #else #include #endif diff --git a/src/vgmstream.c b/src/vgmstream.c index 858c0b5f..4cbb8409 100644 --- a/src/vgmstream.c +++ b/src/vgmstream.c @@ -1121,7 +1121,7 @@ int get_vgmstream_frame_size(VGMSTREAM * vgmstream) { case coding_G7221C: case coding_G7221: #endif -#ifdef VGM_USE_G719: +#ifdef VGM_USE_G719 case coding_G719: #endif #ifdef VGM_USE_MAIATRAC3PLUS