From 82e9bed20e27a8eec7e8a0de22651b4ff073e4d3 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 15 Aug 2013 20:34:05 -0400 Subject: [PATCH] [Android] Fix a bug where the name would display incorrectly in the game list. Completely missed the 'this.' on the variable. My bad. --- .../Android/src/org/dolphinemu/dolphinemu/GameListItem.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Android/src/org/dolphinemu/dolphinemu/GameListItem.java b/Source/Android/src/org/dolphinemu/dolphinemu/GameListItem.java index a9ef41c6d4..92ad986e91 100644 --- a/Source/Android/src/org/dolphinemu/dolphinemu/GameListItem.java +++ b/Source/Android/src/org/dolphinemu/dolphinemu/GameListItem.java @@ -10,7 +10,7 @@ import java.io.InputStream; public final class GameListItem implements Comparable { - private final String name; + private String name; private final String data; private final String path; private final boolean isValid; @@ -46,7 +46,7 @@ public final class GameListItem implements Comparable image = Bitmap.createBitmap(Banner, 96, 32, Bitmap.Config.ARGB_8888); } - name = NativeLibrary.GetTitle(path); + this.name = NativeLibrary.GetTitle(path); } }