mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 16:05:07 +01:00
qt: Fix double dialog and crash when OpenGL is selected on unsupported platform. (#6867)
This commit is contained in:
parent
f76165d848
commit
b739bd2632
@ -1071,8 +1071,10 @@ bool GMainWindow::LoadROM(const QString& filename) {
|
||||
ShutdownGame();
|
||||
}
|
||||
|
||||
render_window->InitRenderTarget();
|
||||
secondary_window->InitRenderTarget();
|
||||
if (!render_window->InitRenderTarget() || !secondary_window->InitRenderTarget()) {
|
||||
LOG_CRITICAL(Frontend, "Failed to initialize render targets!");
|
||||
return false;
|
||||
}
|
||||
|
||||
const auto scope = render_window->Acquire();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user