optifine icon

This commit is contained in:
Tungstend 2024-02-07 14:30:14 +08:00
parent 3ac2c5cd1c
commit 82fe5c39ec
4 changed files with 3 additions and 3 deletions

View File

@ -278,7 +278,7 @@ public class FCLGameRepository extends DefaultGameRepository {
else if (LibraryAnalyzer.analyze(version).has(LibraryAnalyzer.LibraryType.LITELOADER))
return FCLPath.CONTEXT.getDrawable(R.drawable.img_chicken);
else if (LibraryAnalyzer.analyze(version).has(LibraryAnalyzer.LibraryType.OPTIFINE))
return FCLPath.CONTEXT.getDrawable(R.drawable.img_command);
return FCLPath.CONTEXT.getDrawable(R.drawable.img_optifine);
else if (LibraryAnalyzer.analyze(version).has(LibraryAnalyzer.LibraryType.FABRIC))
return FCLPath.CONTEXT.getDrawable(R.drawable.img_fabric);
else if (LibraryAnalyzer.analyze(version).has(LibraryAnalyzer.LibraryType.QUILT))

View File

@ -86,7 +86,7 @@ public class InstallerItem {
case LITELOADER:
return context.getDrawable(R.drawable.img_chicken);
case OPTIFINE:
return context.getDrawable(R.drawable.img_command);
return context.getDrawable(R.drawable.img_optifine);
case FABRIC:
case FABRIC_API:
return context.getDrawable(R.drawable.img_fabric);

View File

@ -92,7 +92,7 @@ public class RemoteVersionListAdapter extends FCLAdapter {
if (remoteVersion instanceof LiteLoaderRemoteVersion)
return getContext().getDrawable(R.drawable.img_chicken);
else if (remoteVersion instanceof OptiFineRemoteVersion)
return getContext().getDrawable(R.drawable.img_command);
return getContext().getDrawable(R.drawable.img_optifine);
else if (remoteVersion instanceof ForgeRemoteVersion)
return getContext().getDrawable(R.drawable.img_forge);
else if (remoteVersion instanceof NeoForgeRemoteVersion)

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB