mirror of
https://github.com/xenia-project/xenia.git
synced 2026-04-20 22:13:40 +00:00
[XAM] Fixed XexGetModuleHandle
This commit is contained in:
parent
6a23f1457b
commit
68b2174378
1 changed files with 2 additions and 1 deletions
|
|
@ -63,7 +63,8 @@ dword_result_t XexGetModuleHandle(std::string module_name,
|
|||
|
||||
dword_result_t XexGetModuleHandle_entry(lpstring_t module_name,
|
||||
lpdword_t hmodule_ptr) {
|
||||
return XexGetModuleHandle(module_name.value(), hmodule_ptr);
|
||||
return XexGetModuleHandle(module_name ? module_name.value() : "",
|
||||
hmodule_ptr);
|
||||
}
|
||||
DECLARE_XBOXKRNL_EXPORT1(XexGetModuleHandle, kModules, kImplemented);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue