mirror of https://github.com/OpenTTD/OpenTTD
(svn r3309) Cygwin doesn't define _MSC_VER; check it exists before basing decisions on its value.
parent
28fe368b7f
commit
592aee1e27
2
win32.c
2
win32.c
|
@ -1218,6 +1218,7 @@ int CDECL snprintf(char *str, size_t size, const char *format, ...)
|
|||
return ret;
|
||||
}
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#if _MSC_VER < 1400 /* Already defined in VS 2005 */
|
||||
int CDECL vsnprintf(char *str, size_t size, const char *format, va_list ap)
|
||||
{
|
||||
|
@ -1227,6 +1228,7 @@ int CDECL vsnprintf(char *str, size_t size, const char *format, va_list ap)
|
|||
return ret;
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Insert a chunk of text from the clipboard onto the textbuffer. Get TEXT clipboard
|
||||
|
|
Loading…
Reference in New Issue