mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 01:01:00 -04:00
fix the messagebox fix
This commit is contained in:
parent
d834ec1221
commit
d2befe1873
1 changed files with 19 additions and 19 deletions
|
@ -29,25 +29,25 @@ static void __cdecl fixedErrorHandler(int code, char const* description) {
|
|||
);
|
||||
}
|
||||
|
||||
$execute {
|
||||
// updated for 2.204
|
||||
// check xrefs to "GLFWError #%d Happen, %s\n", now there's two functions with the same exact
|
||||
// behaviour, one is a member function though... call ds:MessageBoxW
|
||||
// patch MessageBoxW to MessageBoxA
|
||||
// geode::base::getCocos() + 0x122600 = MessageBoxA in .idata
|
||||
// geode::base::getCocos() + 0x1225DC = MessageBoxW in .idata
|
||||
if (LoaderImpl::get()->isForwardCompatMode()) return;
|
||||
|
||||
const uint32_t importedMessageBoxA = geode::base::getCocos() + 0x122600;
|
||||
|
||||
ByteVector p = {
|
||||
(importedMessageBoxA) & 0xff,
|
||||
(importedMessageBoxA >> 8) & 0xff,
|
||||
(importedMessageBoxA >> 16) & 0xff,
|
||||
(importedMessageBoxA >> 24) & 0xff};
|
||||
|
||||
(void)Mod::get()->patch(reinterpret_cast<void*>(geode::base::getCocos() + 0xC75F9), p);
|
||||
(void)Mod::get()->patch(reinterpret_cast<void*>(geode::base::getCocos() + 0xc7651), p);
|
||||
$execute {
|
||||
// updated for 2.204
|
||||
// check xrefs to "GLFWError #%d Happen, %s\n", now there's two functions with the same exact
|
||||
// behaviour, one is a member function though... call ds:MessageBoxW
|
||||
// patch MessageBoxW to MessageBoxA
|
||||
// geode::base::getCocos() + 0x122600 = MessageBoxA in .idata
|
||||
// geode::base::getCocos() + 0x1225DC = MessageBoxW in .idata
|
||||
if (LoaderImpl::get()->isForwardCompatMode()) return;
|
||||
|
||||
const uint32_t importedMessageBoxA = geode::base::getCocos() + 0x122600;
|
||||
|
||||
ByteVector p = {
|
||||
static_cast<unsigned char>((importedMessageBoxA) & 0xff),
|
||||
static_cast<unsigned char>((importedMessageBoxA >> 8) & 0xff),
|
||||
static_cast<unsigned char>((importedMessageBoxA >> 16) & 0xff),
|
||||
static_cast<unsigned char>((importedMessageBoxA >> 24) & 0xff)};
|
||||
|
||||
(void)Mod::get()->patch(reinterpret_cast<void*>(geode::base::getCocos() + 0xC75F9), p);
|
||||
(void)Mod::get()->patch(reinterpret_cast<void*>(geode::base::getCocos() + 0xc7651), p);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue