1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-29 11:06:47 -06:00

am: Fix VR enabled by default ()

This PR fix an issue I've made in  which is enabled VR as default.
It could cause rendering issues in games when VR mode isn't used, as users have reported in Smash:
This commit is contained in:
Ac_K 2020-11-16 02:38:11 +01:00 committed by GitHub
parent 313f8d2eb6
commit fcc9cbf816
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -12,7 +12,7 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.Sys
private Apm.SystemManagerServer _apmSystemManagerServer; private Apm.SystemManagerServer _apmSystemManagerServer;
private Lbl.LblControllerServer _lblControllerServer; private Lbl.LblControllerServer _lblControllerServer;
private bool _vrModeEnabled = true; private bool _vrModeEnabled = false;
public ICommonStateGetter(ServiceCtx context) public ICommonStateGetter(ServiceCtx context)
{ {