diff options
author | Damiano Galassi <[email protected]> | 2016-02-16 09:26:11 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2016-02-16 09:26:11 +0100 |
commit | 6e92d2c016d0a4af77de22c988cb946428f797f2 (patch) | |
tree | 0cfb0b0a76cb76a7d25f740d6ad99f41e4214dba /macosx | |
parent | 71b977f58afecb1b4ab36310caec1eaa1ae5d3a0 (diff) |
MacGui: write the right minor and micro version in the presets. They were swapped.
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/HBPreset.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/HBPreset.m b/macosx/HBPreset.m index 147c0c555..dcc164765 100644 --- a/macosx/HBPreset.m +++ b/macosx/HBPreset.m @@ -263,8 +263,8 @@ NSDictionary *dict = @{ @"PresetList": presetList, @"VersionMajor": @(major), - @"VersionMicro": @(minor), - @"VersionMinor": @(micro) }; + @"VersionMinor": @(minor), + @"VersionMicro": @(micro) }; if (format == HBPresetFormatPlist) { |