
Incompatibility issue with Embeddium++
Closed this issue ยท 6 comments
Mod cancels the vanilla loop doing its own string concatenations and display stuff
whoever, this breaks Embeddium++ FPS overlay and BetterF3 debug information
emb++ injects into vanilla loop to emulate the update cooldown, refreshing the AVG calculation and get the GPU usage
and i assume betterF3 do the same (or checks the result strings idk). openning F3 will shows GPU usage as "N/A"
fix for embeddium++:
instead of do that agressive patch, you can redirect/wrap the String.format(), rehusing the set of variables and still using the vanilla loop
https://github.com/ItsThosea/BadOptimizations/blob/dd754eb23263cbd2fc2ae58e28638709a7481fc4/common/src/main/java/me/thosea/badoptimizations/mixin/fps_string/MixinClient.java#L79-L94
ended up just removing it altogether, that optimization doesn't do anything noticeable anyway
I can impl the same optimizations, but disabling String.format() when debug overlay Is off (as a minor patch around the FPS overlay)