Oscar1640

Results 12 comments of Oscar1640

I managed to fix the problem, at least partially on some devices. modifying the file in touchHLE/vendor/SDL/android-project/app/src/main/java/org/libsdl/app/SDLControllerManager.java I added a filter to check that the fingerprint sensor is not a...

@ciciplusplus My device is a Redmi 12c with Android 12 which is affected by this problem and the solution I proposed works modify the controller_added() method in the window.rs file...

The problem seems to be related to the build system, has anyone tried using mingw instead of msbuild?

I managed to fix the build issue on Windows, the build finishes [successfully,](https://i.ibb.co/1KR3YkW/Screenshot-1.png) but the solution is a bit complicated Here I have the steps to follow to solve the...

**1. Enable git symlinks for Windows:** open a cmd window with administrator privileges (required). enable git symlinks with the following command: ``` git config --global core.symlinks true ``` clone the...

**2. Download cmake 3.22 and add to the PATH:** download cmake 3.22 from sdk manager in android studio. add the path of your cmake installation to the ``PATH`` system environment...

**3. Define necessary variables:** ``` CMAKE_GENERATOR=Ninja ASM= CC= CXX= ``` cmake will use ``msbuild`` by default so it is necessary to define ``ninja-build`` as the build system. We also need...

@ciciplusplus I'm glad my contribution has been useful. I see that you have already addressed the following points that I left pending, so it is no longer necessary for me...

Of course I will, in fact I had already proposed a solution to solve the error with the [accelerometer](https://github.com/touchHLE/touchHLE/issues/151) in MIUI and other affected devices.

I managed to successfully build the windows version but the android version has this problem. The cmake error can be fixed by adding the cmake path to the PATH variable,...