Merge pull request #9135 from JosJuice/show-nkit

Show NKitness in file format string
This commit is contained in:
Léo Lam 2020-10-14 12:19:53 +02:00 committed by GitHub
commit b24223c178
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 22 additions and 11 deletions

View file

@ -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())
{

View file

@ -40,7 +40,7 @@ public class GameFile
public native int getBlobType();
public native String getBlobTypeString();
public native String getFileFormatName();
public native long getBlockSize();