We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2664f8b commit 87f89edCopy full SHA for 87f89ed
src/app/desktop/utils/index.js
@@ -577,8 +577,8 @@ export const getJVMArguments112 = (
577
args.push(...mcArgs);
578
579
if (resolution) {
580
- args.push(`--width ${resolution.width}`);
581
- args.push(`--height ${resolution.height}`);
+ args.push(`--width=${resolution.width}`);
+ args.push(`--height=${resolution.height}`);
582
}
583
584
return args;
@@ -700,8 +700,8 @@ export const getJVMArguments113 = (
700
701
702
703
704
705
706
707
args = args.filter(arg => {
0 commit comments