summaryrefslogtreecommitdiff
path: root/Source/Android/src/org
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2013-08-15 20:34:05 -0400
committerLioncash <mathew1800@gmail.com>2013-08-15 20:34:05 -0400
commit82e9bed20e27a8eec7e8a0de22651b4ff073e4d3 (patch)
tree78f400e6a18b39cff66906f05699f36f8cdff7f1 /Source/Android/src/org
parentc3065ecb6697de5a0afda5f39d8231f1ff5d6513 (diff)
[Android] Fix a bug where the name would display incorrectly in the game list.
Completely missed the 'this.' on the variable. My bad.
Diffstat (limited to 'Source/Android/src/org')
-rw-r--r--Source/Android/src/org/dolphinemu/dolphinemu/GameListItem.java4
1 files 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<GameListItem>
{
- 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<GameListItem>
image = Bitmap.createBitmap(Banner, 96, 32, Bitmap.Config.ARGB_8888);
}
- name = NativeLibrary.GetTitle(path);
+ this.name = NativeLibrary.GetTitle(path);
}
}