Skip to content
  • Lioncash's avatar
    yuzu/main: Resolve precedence bug within CalculateRomFSEntrySize() · f646ca87
    Lioncash authored
    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.
    f646ca87
Loading