Skip to content

Commit

Permalink
fix: fix VR module detection lost during qudix refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
alandtse committed Jan 30, 2024
1 parent f4527e9 commit cf9a3b8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/REL/Module.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,11 @@ namespace REL
if (const auto result = getFilename();
result != _filename.size() - 1 ||
result == 0) {
#ifndef SKYRIMVR
_filename = L"SkyrimSE.exe"sv;
#else
_filename = L"SkyrimVR.exe"sv;
#endif
}

load();
Expand Down

0 comments on commit cf9a3b8

Please sign in to comment.