We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a919c7 commit 3010f48Copy full SHA for 3010f48
src/unrealsdk/game/selector.cpp
@@ -55,7 +55,8 @@ std::unique_ptr<AbstractHook> find_correct_hook(std::string_view executable) {
55
56
std::unique_ptr<AbstractHook> select_based_on_executable(void) {
57
auto executable_filename = utils::get_executable().filename().string();
58
- return find_correct_hook(config::get_str("exe_override").value_or(executable_filename));
+ return find_correct_hook(
59
+ config::get_str("unrealsdk.exe_override").value_or(executable_filename));
60
}
61
62
} // namespace unrealsdk::game
0 commit comments