workaround ares state size being blown up, fix compilation issue in some gcc versions

This commit is contained in:
CasualPokePlayer 2022-12-16 18:16:59 -08:00
parent 25795d2372
commit 2989a73430
3 changed files with 2 additions and 1 deletions

Binary file not shown.

View File

@ -596,6 +596,7 @@ EXPORT bool Init(LoadData* loadData, ControllerType* controllers, bool isPal, bo
ares::Nintendo64::BobDeinterlace = bobDeinterlace;
root->power(false);
root->run(); // HACK, first frame dirties a ton of memory, so we emulate it then seal (this should be investigated, not sure why 60MBish of memory would be dirtied in a single frame?)
return true;
}

View File

@ -210,7 +210,7 @@ auto CPU::checkFPUExceptions() -> bool {
#define CHECK_FPE_IMPL(type, operation, convert) ({ \
fenv.clearExcept(); \
type res = [&]() noinline -> type { return operation; }(); \
type res = [&]() noinline { return operation; }(); \
if (checkFPUExceptions<convert>()) return; \
(res); \
})