feat: always show dalamud logo, even when not testing

This commit is contained in:
goaaats 2021-12-08 22:29:40 +01:00
parent df29b2b246
commit 5dddf5f1cd
No known key found for this signature in database
GPG key ID: F18F057873895461

View file

@ -379,16 +379,19 @@ namespace Dalamud.Interface.Internal
var cursor = ImGui.GetCursorPos();
if (ImGui.Button("###devMenuOpener", imageSize))
this.isImGuiDrawDevMenu = true;
/*
#if !DEBUG
if (config.DoDalamudTest)
{
#endif
ImGui.SetCursorPos(cursor);
ImGui.Image(this.logoTexture.ImGuiHandle, imageSize);
*/
ImGui.SetCursorPos(cursor);
ImGui.Image(this.logoTexture.ImGuiHandle, imageSize);
/*
#if !DEBUG
}
#endif
*/
ImGui.End();
}