mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-10-22 09:27:40 +00:00
gp:: used 'char' which failed on Android where 'char' is unsigned. Fixed. Also improved Xprintf
This commit is contained in:
6
rug.cpp
6
rug.cpp
@@ -9,12 +9,6 @@
|
||||
#define TEXTURESIZE (texturesize)
|
||||
#define HTEXTURESIZE (texturesize/2)
|
||||
|
||||
#if ISANDROID
|
||||
template<class...T> void Xprintf(T... t) { __android_log_print(ANDROID_LOG_VERBOSE, "RUG", t...); }
|
||||
#else
|
||||
template<class...T> void Xprintf(T... t) { printf(t...); }
|
||||
#endif
|
||||
|
||||
bool rug_failure = false;
|
||||
|
||||
namespace rug {
|
||||
|
Reference in New Issue
Block a user