diff --git a/src/Core.h b/src/Core.h index 3dc3cea14..abe4086b3 100644 --- a/src/Core.h +++ b/src/Core.h @@ -616,6 +616,7 @@ typedef cc_uint8 cc_bool; #define DEFAULT_GFX_BACKEND CC_GFX_BACKEND_GL2 #else #define DEFAULT_GFX_BACKEND CC_GFX_BACKEND_GL1 + #define CC_DISABLE_ANIMATIONS #endif #endif #endif diff --git a/src/Graphics_GL1.c b/src/Graphics_GL1.c index 4f027d8e1..88c1fca10 100644 --- a/src/Graphics_GL1.c +++ b/src/Graphics_GL1.c @@ -440,7 +440,7 @@ cc_bool Gfx_WarnIfNecessary(void) { #if defined CC_BUILD_SYMBIAN if (String_ContainsConst(&renderer, "SGX")) { } else if (String_ContainsConst(&renderer, "MBX")) { - Gfx.Limitations |= GFX_LIMIT_VERTEX_ONLY_FOG; + Gfx.Limitations |= GFX_LIMIT_MINIMAL; mbx = true; } else if (!String_ContainsConst(&renderer, "HW")) { Chat_AddRaw("&cSoftware rendering is being used, performance will greatly suffer.");