mirror of
https://github.com/AngelAuraMC/Amethyst-Android.git
synced 2026-04-21 10:07:15 -04:00
Bug fix: Window size on Forge is not correctly
This commit is contained in:
@@ -211,6 +211,12 @@ public final class Tools
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Window size fix
|
||||
minecraftArgs.add("--width");
|
||||
minecraftArgs.add(Integer.toString(CallbackBridge.windowWidth));
|
||||
minecraftArgs.add("--height");
|
||||
minecraftArgs.add(Integer.toString(CallbackBridge.windowHeight));
|
||||
|
||||
String[] argsFromJson = JSONUtils.insertJSONValueList(
|
||||
splitAndFilterEmpty(
|
||||
|
||||
Reference in New Issue
Block a user