Merge remote-tracking branch 'GliniakRepo/patchingSystem' into canary_pr

This commit is contained in:
Gliniak
2022-05-19 10:01:33 +02:00
18 changed files with 520 additions and 2 deletions

View File

@@ -1004,6 +1004,10 @@ void EmulatorWindow::UpdateTitle() {
sb.Append(u8" (Preloading shaders\u2026)");
}
patcher::Patcher* patcher = emulator()->patcher();
if (patcher && patcher->IsAnyPatchApplied()) {
sb.Append(u8" [Patches Applied]");
}
window_->SetTitle(sb.to_string_view());
}