mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
[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:
@ -10,7 +10,7 @@ import java.io.InputStream;
|
|||||||
|
|
||||||
public final class GameListItem implements Comparable<GameListItem>
|
public final class GameListItem implements Comparable<GameListItem>
|
||||||
{
|
{
|
||||||
private final String name;
|
private String name;
|
||||||
private final String data;
|
private final String data;
|
||||||
private final String path;
|
private final String path;
|
||||||
private final boolean isValid;
|
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);
|
image = Bitmap.createBitmap(Banner, 96, 32, Bitmap.Config.ARGB_8888);
|
||||||
}
|
}
|
||||||
|
|
||||||
name = NativeLibrary.GetTitle(path);
|
this.name = NativeLibrary.GetTitle(path);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user