diff options
author | Ac_K <Acoustik666@gmail.com> | 2020-11-16 02:38:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-15 22:38:11 -0300 |
commit | fcc9cbf8164a11d834b2326906885f2ac4cb4b77 (patch) | |
tree | c66b12fa2fa60e3c0581c8dcd4ec8424e8d02e31 /Ryujinx.HLE/HOS/Services | |
parent | 313f8d2eb6e4833170d685d6afd940c077e066f6 (diff) |
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:
Diffstat (limited to 'Ryujinx.HLE/HOS/Services')
-rw-r--r-- | Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ICommonStateGetter.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ICommonStateGetter.cs b/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ICommonStateGetter.cs index 16b78734..62319d47 100644 --- a/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ICommonStateGetter.cs +++ b/Ryujinx.HLE/HOS/Services/Am/AppletAE/AllSystemAppletProxiesService/SystemAppletProxy/ICommonStateGetter.cs @@ -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) { |