am: Fix VR enabled by default (#1715)

This PR fix an issue I've made in #1688 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

View file

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