From 4bf4ebeb19ecb7abe8926253084572755c9b899f Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Fri, 9 Oct 2020 05:06:08 +0200 Subject: [PATCH] Correct navigation in the difficulty select screen --- SourceX/DiabloUI/selgame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SourceX/DiabloUI/selgame.cpp b/SourceX/DiabloUI/selgame.cpp index 0b409c7eb..9e2c4832c 100644 --- a/SourceX/DiabloUI/selgame.cpp +++ b/SourceX/DiabloUI/selgame.cpp @@ -150,7 +150,7 @@ void selgame_GameSelection_Select(int value) switch (value) { case 0: strcpy(title, "Create Game"); - UiInitList(0, NUM_DIFFICULTIES - 1, selgame_Diff_Focus, selgame_Diff_Select, selgame_Diff_Esc, SELDIFF_DIALOG, size(SELDIFF_DIALOG)); + UiInitList(0, NUM_DIFFICULTIES - 1, selgame_Diff_Focus, selgame_Diff_Select, selgame_Diff_Esc, SELDIFF_DIALOG, size(SELDIFF_DIALOG), true); break; case 1: strcpy(title, "Join TCP Games");