Add a rivatuner error to the crash parser

This commit is contained in:
Ty
2026-01-13 12:05:23 -05:00
committed by GitHub
parent 4b732c4a57
commit 4e063a4afe

View File

@@ -89,6 +89,14 @@ public class CrashParser extends AbstractParser {
"To avoid crashing, uninstall Overwolf."
);
}
if(normalizedLine.contains("rtsshooks64.dll"))
{
this.errors.add(
"[Fatal] RivaTuner statistics server detected. This program is known to cause memory leaks when using DX12 on certain hardware.\n" +
"If PCSX2 appears to be leaking memory, uninstall RivaTuner."
);
}
}
reader.close();