From 413ea3f8c8eaebdd1cc74875d15548629238d7d6 Mon Sep 17 00:00:00 2001 From: Elliot Nunn Date: Mon, 14 Jan 2019 16:34:57 +0800 Subject: [PATCH] Disable machfs's fake Desktop DB Re-enable when support is better. For now, it prevents Finder from opening documents correctly. --- Build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build b/Build index e877a1f..8cccd1a 100755 --- a/Build +++ b/Build @@ -292,7 +292,7 @@ vol['System Folder']['System'].rsrc = make_file(sys) log('Writing out disk image') with open(imgdest, 'wb') as f: - f.write(vol.write(256*1024*1024, align=4096)) + f.write(vol.write(256*1024*1024, align=4096, desktopdb=False)) if not args.emu: exit() log('Starting emulator...', flush=True)