Skip to content

Commit

Permalink
Fix Lua API referencing old DLL name
Browse files Browse the repository at this point in the history
  • Loading branch information
praydog committed Dec 28, 2023
1 parent f654c31 commit 5230380
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua-api/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class ScriptContext {
: m_lua{l}
{
std::scoped_lock _{m_mtx};
const auto unreal_vr_backend = GetModuleHandleA("UnrealVRBackend.dll");
const auto unreal_vr_backend = GetModuleHandleA("UEVRBackend.dll");

if (unreal_vr_backend == nullptr) {
return;
Expand Down

0 comments on commit 5230380

Please sign in to comment.