Merge pull request #52 from Suisse00/stepmania_pullrequest

Upgrade to VC++ 2013
This commit is contained in:
Colby Klein
2014-02-18 14:57:55 -08:00
8 changed files with 7030 additions and 1 deletions
+5 -1
View File
@@ -142,7 +142,11 @@ static inline int64_t llabs( int64_t i ) { return i >= 0? i: -i; }
#endif
// MinGW provides us with this function already
#if !defined(__MINGW32__)
#if !defined(__MINGW32__) \
/* VC++ 2013 added the support of lrintf */\
&& (!defined(_MSC_VER) || _MSC_VER < 1800)
inline long int lrintf( float f )
{
int retval;