why segfaulting lmao

This commit is contained in:
rjkiv 2025-08-06 12:52:09 -07:00
parent 3f5b1c3767
commit 9324825d04

View File

@ -1589,7 +1589,10 @@ namespace kernel32 {
}
void* WIN_FUNC FindResourceW(void* hModule, const wchar_t* lpName, const wchar_t* lpType) {
DEBUG_LOG("FindResourceW\n");
// why do these segfault lmao
// std::string name = wideStringToString((const unsigned short *)lpName, wcslen(lpName));
// std::string type = wideStringToString((const unsigned short *)lpType, wcslen(lpType));
DEBUG_LOG("FindResourceW %p\n", hModule);
return (void*)0x100002;
}