mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-04-01 22:14:01 +03:00
RAM Fix
Ранее ползунок установки RAM ничего не изменял.
This commit is contained in:
parent
65d36cf2e2
commit
7f794b3dd1
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ public void write(HOutput output) throws IOException {
|
|||
@LauncherAPI
|
||||
public void setRAM(int ram)
|
||||
{
|
||||
ram = java.lang.Math.min(((ram / 256)) * 256, JVMHelper.RAM);
|
||||
this.ram = java.lang.Math.min(((ram / 256)) * 256, JVMHelper.RAM);
|
||||
}
|
||||
@LauncherAPI
|
||||
public void setDefault()
|
||||
|
|
Loading…
Reference in a new issue