mirror of
https://github.com/izzy2lost/dolphin.git
synced 2026-06-19 01:16:48 -07:00
Show NKitness in file format string
To make people more aware that they're not using a normal disc image.
This commit is contained in:
+1
-1
@@ -90,7 +90,7 @@ public final class GameDetailsDialog extends DialogFragment
|
||||
long blockSize = gameFile.getBlockSize();
|
||||
String compression = gameFile.getCompressionMethod();
|
||||
|
||||
textFileFormat.setText(String.format("%1$s (%2$s)", gameFile.getBlobTypeString(), fileSize));
|
||||
textFileFormat.setText(String.format("%1$s (%2$s)", gameFile.getFileFormatName(), fileSize));
|
||||
|
||||
if (compression.isEmpty())
|
||||
{
|
||||
|
||||
@@ -40,7 +40,7 @@ public class GameFile
|
||||
|
||||
public native int getBlobType();
|
||||
|
||||
public native String getBlobTypeString();
|
||||
public native String getFileFormatName();
|
||||
|
||||
public native long getBlockSize();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user