"src/core/hle/kernel/handle_table.h" did not exist on "8634b8cb83755b6c6554faa11c0e488d2ad21f90"
yuzu/main: Resolve precedence bug within CalculateRomFSEntrySize()
Ternary operators have a lower precedence than arithmetic operators, so what was actually occurring here is "return (out + full) ? x : y" which most definitely isn't intended, given we calculate out recursively above. We were essentially doing a lot of work for nothing.
Loading
Please register or sign in to comment