v2.1.2: actually properly implemented controller init safety check

This commit is contained in:
Evan Debenham
2023-06-14 12:27:46 -04:00
parent a60a585b18
commit aede0d6a48

View File

@@ -75,10 +75,11 @@ public class ControllerHandler implements ControllerListener {
// e.g. missing natives on very old 32-bit desktop platforms // e.g. missing natives on very old 32-bit desktop platforms
Controllers.getCurrent(); Controllers.getCurrent();
initialized = true; initialized = true;
return true;
} catch (Exception e){ } catch (Exception e){
failedInit = true; failedInit = true;
return false;
} }
return true;
} }
} }