[Android] Fix a bug where the name would display incorrectly in the game list.

Completely missed the 'this.' on the variable. My bad.
This commit is contained in:
Lioncash 2013-08-15 20:34:05 -04:00
parent c3065ecb66
commit 82e9bed20e
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}
}