This commit is contained in:
Henrik Rydgård 2023-05-04 01:24:31 +02:00
parent 1d053d2ea8
commit a132b72ba1
2 changed files with 2 additions and 1 deletions

View File

@ -111,6 +111,7 @@ void UIScreen::postRender() {
if (!draw) {
return;
}
screenManager()->getUIContext()->Flush();
draw->EndFrame();
}

View File

@ -365,7 +365,7 @@ public:
}
// In case of a remote file, check if it actually exists before locking.
if (!info_->GetFileLoader()->Exists()) {
if (!info_->GetFileLoader() || !info_->GetFileLoader()->Exists()) {
return;
}