adespoton / utmconfigs

Config files for booting Mac OS 9 and OS X on UTM emulator
The Unlicense
312 stars 19 forks source link

Remove snapshot argument from 10.2 config #32

Closed garamb1 closed 2 months ago

garamb1 commented 2 months ago

Follow up from issue https://github.com/adespoton/utmconfigs/issues/31 This update removes the snapshot option from the OS X 10.2 configuration.

config.plist was updated from:

[...]
        <key>AddArgs</key>
        <array>
            <string>-g 1280x720x32</string>
            <string>-usbdevice tablet</string>
            <string>-snapshot</string>
        </array>
[...]

to:

[...]
        <key>AddArgs</key>
        <array>
            <string>-g 1280x720x32</string>
            <string>-usbdevice tablet</string>
        </array>
[...]