diff --git a/src/client/Minecraft.cpp b/src/client/Minecraft.cpp index ae8ba6b..9146abe 100755 --- a/src/client/Minecraft.cpp +++ b/src/client/Minecraft.cpp @@ -1106,9 +1106,9 @@ void Minecraft::releaseMouse() } bool Minecraft::useTouchscreen() { -#if TARGET_OS_IPHONE +#if defined(TARGET_OS_IPHONE) return true; -#elif RPI +#elif defined(RPI) return false; #endif return options.getBooleanValue(OPTIONS_USE_TOUCHSCREEN) && !_supportsNonTouchscreen; @@ -1149,8 +1149,8 @@ void Minecraft::init() int* grassPixels = textures->loadTexturePixels(grassId, "misc/foliagecolor.png"); GrassColor::init(grassPixels); - bool tint = options.getBooleanValue(OPTIONS_FOLIAGE_TINT); // finally, toggleable foliage color - FoliageColor::setUseTint(tint); + bool tint = options.getBooleanValue(OPTIONS_FOLIAGE_TINT); // finally, toggleable foliage color + FoliageColor::setUseTint(tint); GrassColor::setUseTint(tint); // Platform specific initialization here