Revert "feat: always show dalamud logo, even when not testing"

This reverts commit 5dddf5f1cd.
This commit is contained in:
goaaats 2021-12-08 23:18:16 +01:00
parent 317397ab48
commit b8e71cd7ae
No known key found for this signature in database
GPG key ID: F18F057873895461

View file

@ -379,19 +379,16 @@ 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();
}