From fed1f1ee502b78e38c5735bfeebaf0724886a880 Mon Sep 17 00:00:00 2001 From: yugecin Date: Sun, 13 Nov 2016 04:23:27 +0100 Subject: [PATCH] fix going back not reverting the changes from last index --- src/yugecin/opsudance/ui/SBOverlay.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yugecin/opsudance/ui/SBOverlay.java b/src/yugecin/opsudance/ui/SBOverlay.java index b72823d4..39ee416b 100644 --- a/src/yugecin/opsudance/ui/SBOverlay.java +++ b/src/yugecin/opsudance/ui/SBOverlay.java @@ -156,7 +156,7 @@ public class SBOverlay { // new options on previous index, so to revert then we have to reload them all to this point.. final int thisIndex = index; for (int i = 0; i <= thisIndex; i++) { - updateIndex(thisIndex); + updateIndex(i); } } }