mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-19 00:45:46 -04:00
Android: Provide game list file title to Java-side
This commit is contained in:
@ -24,6 +24,7 @@ public class GameListEntry {
|
||||
private String mPath;
|
||||
private String mCode;
|
||||
private String mTitle;
|
||||
private String mFileTitle;
|
||||
private long mSize;
|
||||
private String mModifiedTime;
|
||||
private DiscRegion mRegion;
|
||||
@ -31,11 +32,12 @@ public class GameListEntry {
|
||||
private CompatibilityRating mCompatibilityRating;
|
||||
|
||||
|
||||
public GameListEntry(String path, String code, String title, long size, String modifiedTime, String region,
|
||||
public GameListEntry(String path, String code, String title, String fileTitle, long size, String modifiedTime, String region,
|
||||
String type, String compatibilityRating) {
|
||||
mPath = path;
|
||||
mCode = code;
|
||||
mTitle = title;
|
||||
mFileTitle = fileTitle;
|
||||
mSize = size;
|
||||
mModifiedTime = modifiedTime;
|
||||
|
||||
@ -70,6 +72,8 @@ public class GameListEntry {
|
||||
return mTitle;
|
||||
}
|
||||
|
||||
public String getFileTitle() { return mFileTitle; }
|
||||
|
||||
public String getModifiedTime() {
|
||||
return mModifiedTime;
|
||||
}
|
||||
|
Reference in New Issue
Block a user