1
mirror of https://github.com/R2Northstar/NorthstarLauncher synced 2024-10-30 11:26:40 +01:00

revert a small section

This commit is contained in:
ASpoonPlaysGames 2024-03-08 21:35:45 +00:00
parent c27ecfdef6
commit bee7170ba4

View File

@ -15,7 +15,16 @@
//-----------------------------------------------------------------------------
CModule::CModule(HMODULE hModule)
{
m_pModuleBase = reinterpret_cast<uintptr_t>(hModule);
MODULEINFO mInfo {0};
if (hModule && hModule != INVALID_HANDLE_VALUE)
GetModuleInformation(GetCurrentProcess(), hModule, &mInfo, sizeof(MODULEINFO));
m_nModuleSize = static_cast<size_t>(mInfo.SizeOfImage);
m_pModuleBase = reinterpret_cast<uintptr_t>(mInfo.lpBaseOfDll);
if (!m_nModuleSize || !m_pModuleBase)
return;
CHAR szModuleName[MAX_PATH];
DWORD dwSize = GetModuleFileNameA(hModule, szModuleName, sizeof(szModuleName));