Skip to content

Commit

Permalink
Disable texture patch by default
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherHX committed Dec 12, 2021
1 parent eb2465a commit 1e44372
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,7 @@ int main(int argc, char *argv[]) {
argparser::arg<bool> forceEgl (p, "--force-opengles", "-fes", "Force creating an OpenGL ES surface instead of using the glcorepatch hack", !GLCorePatch::mustUseDesktopGL());
argparser::arg<bool> forceGooglePlayStoreUnverified(p, "--force-google-play-store-unverified", "-fguv", "Force telling the game that the license isn't verified, Google Play Store version", false);
argparser::arg<bool> forceAmazonAppStoreUnverified(p, "--force-amazon-app-store-unverified", "-fauv", "Force telling the game that the license isn't verified, Amazon App Store version", false);
argparser::arg<bool> texturePatch(p, "--texture-patch", "-tp", "Rewrite textures of the game for Minecraft 1.16.210-1.17.2",
#if defined(__i386__) || defined(__x86_64__)
true
#else
false
#endif
);
argparser::arg<bool> texturePatch(p, "--texture-patch", "-tp", "Rewrite textures of the game for Minecraft 1.16.210 - 1.17.4X", false);

if (!p.parse(argc, (const char**) argv))
return 1;
Expand Down

0 comments on commit 1e44372

Please sign in to comment.