[MCPE-9958] Crash/freezing after changing the fullscreen setting Created: 11/Aug/15 Updated: 21/Aug/17 Resolved: 21/Aug/17 |
|
| Status: | Resolved |
| Project: | Minecraft (Bedrock codebase) |
| Component/s: | None |
| Affects Version/s: | 0.12.0 Win 10, 0.12.1 Win10, 0.12.2 |
| Fix Version/s: | None |
| Type: | Bug | ||
| Reporter: | Nikolay Frolov | ||
| Resolution: | Cannot Reproduce | Votes: | 0 |
| Labels: | None | ||
| Issue Links: |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Confirmation Status: | Unconfirmed | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Platform: | Windows | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Description |
|
(Affects version 0.12.2) |
| Comments |
| Comment by [Mojang] Mega_Spud (Jay Wells) [ 21/Aug/17 ] |
|
This ticket has been resolved as 'Cannot Reproduce' as it has not been updated recently (1 year+) |
| Comment by Samuel Kyletoft [ 15/Aug/16 ] |
|
Updated to Win10 anniversary edition (Win10, 64bit, build 14393) and the game now crashes when running on my nvidia gpu (840M) but not on the integrated intel card MCPE 0.15.6 Doesn't crash in windowed mode (if you're stuck on constant crashes, top right corner, windowed mode button) |
| Comment by AMAN4700 [ 29/Jan/16 ] |
|
Does this bug still appear in 0.13.1? If so please respond. |
| Comment by Extreme [ 15/Aug/15 ] |
|
This issue can usually be resolved by updating graphics drivers as explained here: http://hopper.minecraft.net/help/pixel-format-not-accelerated/ - it applies to the Windows 10 Edition too. Also, Windows seems to store the full screen preference under HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ApplicationFrame\WindowSizing\ so editing the launch mode should at least allow people to launch the game. Reinstalling or changing the "options.txt" to disable full screen doesn't seem to work as the registry key to my understanding gets loaded before anything else. Quick PowerShell script to change the fullscreen setting, search "powershell" at Start and paste in the following: Add-Type -AssemblyName Microsoft.VisualBasic;$m = [Microsoft.VisualBasic.Interaction];$a="Minecraft: Windows 10 Edition";$b=$m::InputBox("Set the prefered launch mode.`n`n0: No prefered launch mode`n1: Prefer window mode`n2: Prefer full screen mode", $a, "0");try{$l=[int]$b;if(($b-lt0)-or($b-gt2)){exit;}}catch{};Set-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\ApplicationFrame\WindowSizing\Microsoft.MinecraftUWP_8wekyb3d8bbwe!App -Name PreferredLaunchWindowingMode -Value $l; |