1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-02 09:03:37 +00:00

Prevent config dialog from being opened twice.

Fixed #2158 Project 64 Crashes if you open GlideN64 Video Settings when they are already open.
This commit is contained in:
Sergey Lipskiy 2020-01-02 14:44:01 +07:00
parent e676dafb7a
commit c823047f99

View File

@ -11,6 +11,9 @@ Config config;
void Config_DoConfig(/*HWND hParent*/)
{
if (ConfigOpen)
return;
wchar_t strIniFolderPath[PLUGIN_PATH_SIZE];
api().FindPluginPath(strIniFolderPath);