From b8ebdc012f17803a183898b3635852ac9d80421b Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 19 Mar 2020 18:58:36 -0400 Subject: [PATCH] Ensure normative construction declaration ordering. --- Machines/ZX8081/ZX8081.hpp | 4 ++-- .../xcshareddata/xcschemes/Clock Signal.xcscheme | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Machines/ZX8081/ZX8081.hpp b/Machines/ZX8081/ZX8081.hpp index e6933afef..5fff0ffe8 100644 --- a/Machines/ZX8081/ZX8081.hpp +++ b/Machines/ZX8081/ZX8081.hpp @@ -35,8 +35,8 @@ class Machine { bool automatic_tape_motor_control; Options(Configurable::OptionsType type): - automatic_tape_motor_control(type == Configurable::OptionsType::UserFriendly), - Configurable::QuickloadOption(type == Configurable::OptionsType::UserFriendly) { + Configurable::QuickloadOption(type == Configurable::OptionsType::UserFriendly), + automatic_tape_motor_control(type == Configurable::OptionsType::UserFriendly) { // Declare fields if necessary. if(needs_declare()) { diff --git a/OSBindings/Mac/Clock Signal.xcodeproj/xcshareddata/xcschemes/Clock Signal.xcscheme b/OSBindings/Mac/Clock Signal.xcodeproj/xcshareddata/xcschemes/Clock Signal.xcscheme index f049730f4..7f370216e 100644 --- a/OSBindings/Mac/Clock Signal.xcodeproj/xcshareddata/xcschemes/Clock Signal.xcscheme +++ b/OSBindings/Mac/Clock Signal.xcodeproj/xcshareddata/xcschemes/Clock Signal.xcscheme @@ -67,7 +67,7 @@