minetest/src/porting.h

16 lines
204 B
C
Raw Normal View History

2010-11-26 15:02:21 -08:00
/*
(c) 2010 Perttu Ahola <celeron55@gmail.com>
*/
#ifndef PORTING_HEADER
#define PORTING_HEADER
#ifdef _WIN32
#define SWPRINTF_CHARSTRING L"%S"
#else
#define SWPRINTF_CHARSTRING L"%s"
#endif
#endif