emu64: improve score by fixing inlining

This commit is contained in:
Cuyler36
2025-06-17 10:51:00 -04:00
parent 062fa00502
commit 3b05953b8c
2 changed files with 7 additions and 3 deletions
+6 -2
View File
@@ -11,10 +11,14 @@
#include "jsyswrap.h"
#include "dolphin/PPCArch.h"
#pragma inline_depth(smart)
#pragma inline_max_size(1000)
// this pragma may be unnecessary
#pragma inline_depth(1024)
// this one is absolutely necessary for a ton of function calls to be inlined
#pragma inline_max_size(10000)
#include "../src/static/libforest/emu64/emu64_utility.c"
#include "../src/static/libforest/emu64/emu64_print.cpp"
extern void OSInitFastCast(void);
+1 -1
View File
@@ -1,4 +1,4 @@
#include "emu64.hpp"
// #include "emu64.hpp"
#include "boot.h"