mojira.dev

kb1000

Assigned

No issues.

Reported

MC-213840 Close button does not close the game, instead shows a gray screen Duplicate MC-176588 Old GSON version used Invalid MC-168660 4 OpenGL GL_INVALID_VALUE debug messages show up on closing the game Invalid MCPE-47634 Android version of Bedrock doesn't recognize wifi hotspot as wifi network and doesn't scan for local games Duplicate

Comments

Actually, there's more to it. It does not happen in a few other worlds with different seeds, only in this one.

Recreating the world does not reproduce it either. I attached the world that reproduces it.

A screen recording: https://youtu.be/-487ga2p-H8

All I did when it turned gray was clicking the close button of the Minecraft window. This seems to be 100% reproducible in my environment, and does not happen randomly, from what I can tell (so it doesn't look like a duplicate of MC-213788 to me).

Interestingly my driver was indeed outdated, I have version 10.18.10.5069 now.
I started the game with the official launcher (there should be no that big behavioral differences between that part of MultiMC and the official launcher) and the new driver, getting the same messages.

I would call OpenGL errors bugs. It's not like I need support or something... but this bug MAY get worse and cause bigger issues than simple warnings.

WifiManager wifimanager = (WifiManager) context.getSystemService(context.WIFI_SERVICE);     
Method method = wifimanager.getClass().getDeclaredMethod("isWifiApEnabled");
method.setAccessible(true);
boolean wifiEnabled = (boolean) method.invoke(wifimanager);