commit 93f62bbad960eb77e0afc38762c23900341b3d07 Author: Philipp Kutin Date: Mon Sep 7 18:25:20 2020 +0200 sdlayer.cpp: remove an '#ifndef __ANDROID__' block with only commented code in it. commit 64ea64d8e94076311d3d9e02d27f6f3e457c6ed8 Author: Philipp Kutin Date: Mon Sep 7 17:53:35 2020 +0200 sdlayer.cpp: don't print SDL_SetWindowGammaRamp() error if the function was not called. We may have gotten an error message like: videoSetGamma(): Failed loading udev_device_get_action: (...)/libSDL2-2.0.so.0: undefined symbol: _udev_device_get_action But: 1. The "error" in question did actually happen earlier in SDL, but is harmless because SDL first tries to load a symbol using 'dlsym(RTLD_DEFAULT, ...)' and failing that (as it happens in my case), from an explicitly loaded libudev (which succeeds). 2. The message misleads a user into thinking that it may have something to do with gamma adjustment having no effect. (As is the case for me.) commit c18af2a1130f181010629b21a661d82e14e80e88 Author: Philipp Kutin Date: Mon Sep 7 17:44:11 2020 +0200 build: update zpl.h for build and runtime fixes on 32-bit ARM. See: https://github.com/zpl-c/zpl/pull/44 https://github.com/zpl-c/zpl/issues/45 commit 7306a1e119c30fd7d24cbfbc50317809e42fd191 Author: Daniel Gurney Date: Sun Sep 6 14:38:12 2020 +0300 Disable microprofile on ARM64 Windows See https://voidpoint.io/terminx/eduke32 for more details.