1
0
mirror of https://github.com/moparisthebest/minetest synced 2024-08-13 16:53:49 -04:00
minetest/src/porting.h

16 lines
204 B
C
Raw Normal View History

2010-11-26 18:02:21 -05: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