Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Fix a bug where the name would display incorrectly in the g…
…ame list.

Completely missed the 'this.' on the variable. My bad.
  • Loading branch information
lioncash committed Aug 16, 2013
1 parent c3065ec commit 82e9bed
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -10,7 +10,7 @@

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;
Expand Down Expand Up @@ -46,7 +46,7 @@ public GameListItem(Context ctx, String name, String data, String path, boolean
image = Bitmap.createBitmap(Banner, 96, 32, Bitmap.Config.ARGB_8888);
}

name = NativeLibrary.GetTitle(path);
this.name = NativeLibrary.GetTitle(path);
}
}

Expand Down

0 comments on commit 82e9bed

Please sign in to comment.