muffin v6.35 with old pdb

This commit is contained in:
alydev 2025-10-29 06:52:53 +10:00
parent ac85599236
commit b5d2cc6708
31 changed files with 958 additions and 958 deletions

View file

@ -235,19 +235,19 @@ internal sealed class QuestJournalComponent
private void DrawGenre(FilteredGenre filter)
{
var (count, num5, total, count2) = _genreCounts.GetValueOrDefault(filter.Genre, new JournalCounts());
if (num5 == 0)
var (tab, enabled, total, levelToStopAfter) = _genreCounts.GetValueOrDefault(filter.Genre, new JournalCounts());
if (enabled == 0)
{
return;
}
ImGui.TableNextRow();
ImGui.TableNextColumn();
bool num6 = ImGui.TreeNodeEx(filter.Genre.Name, ImGuiTreeNodeFlags.SpanFullWidth);
bool num2 = ImGui.TreeNodeEx(filter.Genre.Name, ImGuiTreeNodeFlags.SpanFullWidth);
ImGui.TableNextColumn();
DrawCount(count, num5);
DrawCount(tab, enabled);
ImGui.TableNextColumn();
DrawCount(count2, total);
if (!num6)
DrawCount(levelToStopAfter, total);
if (!num2)
{
return;
}