From a0ae7a2f1a68aa7d61e26a14c21e1341b9631fb1 Mon Sep 17 00:00:00 2001 From: Yohan Garde Date: Tue, 16 Oct 2018 03:23:57 +0200 Subject: [PATCH] Fix to properly save the picture when the GZdoom logo is selected as the engine picture --- enginesetup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enginesetup.cpp b/enginesetup.cpp index 121cf4c..210c170 100644 --- a/enginesetup.cpp +++ b/enginesetup.cpp @@ -184,7 +184,7 @@ void RocketLauncher2::on_combo_EngPic_currentTextChanged(const QString &arg1) enginelist->setPicFromIndex(Pic_Edge, index); else if (arg1 == "Eternity") enginelist->setPicFromIndex(Pic_Eternity, index); - else if (arg1 == "GZDoom") + else if (arg1 == "GZdoom") enginelist->setPicFromIndex(Pic_GZdoom, index); else if (arg1 == "Legacy") enginelist->setPicFromIndex(Pic_Legacy, index);