From f3c5967310b79446d061f6e33268f8d08a25055d Mon Sep 17 00:00:00 2001 From: Elliot Nunn Date: Thu, 11 Jul 2019 12:58:13 +0800 Subject: [PATCH] Give MPW more RAM --- bin/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/build b/bin/build index c7fbe7c..572ee56 100755 --- a/bin/build +++ b/bin/build @@ -146,7 +146,7 @@ if config.passthru: mpw = list(macresources.parse_file(vol['MPW']['MPW Shell'].rsrc)) for resource in mpw: if resource.type == b'SIZE': - resource.data = resource.data[:2] + (0x300000).to_bytes(4, byteorder='big') * 2 + resource.data[10:] + resource.data = resource.data[:2] + (0x600000).to_bytes(4, byteorder='big') * 2 + resource.data[10:] vol['MPW']['MPW Shell'].rsrc = macresources.make_file(mpw) # Patch the Process Manager to shut down when the last visible app quits,