Merge pull request #16587 from jbeich/xr-null

Common/VR: blind fix NULL type
This commit is contained in:
Henrik Rydgård 2022-12-15 16:51:50 +01:00 committed by GitHub
commit 23ca9f6294
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -217,7 +217,7 @@ void VR_LeaveVR( engine_t* engine ) {
OXR(xrDestroySpace(engine->appState.FakeStageSpace));
engine->appState.CurrentSpace = XR_NULL_HANDLE;
OXR(xrDestroySession(engine->appState.Session));
engine->appState.Session = NULL;
engine->appState.Session = XR_NULL_HANDLE;
}
}