From 83cbbe09c602200b7d8d23521ad4bd3d38a8813b Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 7 Mar 2021 12:52:39 -0500 Subject: [PATCH 1/2] Adds missing constraints; eliminates magic constants. --- .../Base.lproj/MachinePicker.xib | 268 +++++++++--------- 1 file changed, 135 insertions(+), 133 deletions(-) diff --git a/OSBindings/Mac/Clock Signal/MachinePicker/Base.lproj/MachinePicker.xib b/OSBindings/Mac/Clock Signal/MachinePicker/Base.lproj/MachinePicker.xib index 779a95f44..e8579466d 100644 --- a/OSBindings/Mac/Clock Signal/MachinePicker/Base.lproj/MachinePicker.xib +++ b/OSBindings/Mac/Clock Signal/MachinePicker/Base.lproj/MachinePicker.xib @@ -68,7 +68,7 @@ Gw - + @@ -76,7 +76,7 @@ Gw - + @@ -84,8 +84,8 @@ Gw - - + + @@ -99,8 +99,8 @@ Gw - - + + @@ -114,16 +114,16 @@ Gw - - - + + + - - - - - - + + + + + + @@ -134,7 +134,7 @@ Gw - + @@ -142,7 +142,7 @@ Gw - + @@ -150,8 +150,8 @@ Gw - - + + @@ -164,8 +164,8 @@ Gw - - + + @@ -179,28 +179,28 @@ Gw - - + + - - + + - - - - - + + + + + - + - - + + @@ -213,7 +213,7 @@ Gw - + @@ -222,22 +222,22 @@ Gw - - - - - + + + + + - + - + @@ -246,9 +246,9 @@ Gw - + - + @@ -258,28 +258,28 @@ Gw - + - - + + - - + + + - - - + + + + @@ -307,7 +309,7 @@ Gw - + @@ -315,8 +317,8 @@ Gw - - + + @@ -331,30 +333,30 @@ Gw - - - - + + + + - + - + - - + + @@ -367,7 +369,7 @@ Gw - + @@ -376,14 +378,14 @@ Gw - - - - - - - - + + + + + + + + @@ -394,7 +396,7 @@ Gw - + @@ -402,8 +404,8 @@ Gw - - + + @@ -416,8 +418,8 @@ Gw - - + + @@ -432,7 +434,7 @@ Gw - + @@ -441,28 +443,28 @@ Gw - - - - - + + + + + - - - - + + + + - + - - + + @@ -477,8 +479,8 @@ Gw - - + + @@ -491,7 +493,7 @@ Gw - + @@ -499,7 +501,7 @@ Gw - + @@ -507,7 +509,7 @@ Gw - + - - - - - - - - - + + + + + + + + + - - + + - + - - + + @@ -552,7 +554,7 @@ Gw - + @@ -560,7 +562,7 @@ Gw - + - - - - - - - + + + + + + + - + - - + + @@ -600,7 +602,7 @@ Gw - + @@ -610,11 +612,11 @@ Gw - - - - - + + + + + From 6839e9e3b306a29933f01786054c77bdbfdb6d22 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 7 Mar 2021 12:52:54 -0500 Subject: [PATCH 2/2] Ensures no double definition of NDEBUG. --- Components/8530/z8530.cpp | 3 +++ Components/DiskII/IWM.cpp | 3 +++ 2 files changed, 6 insertions(+) diff --git a/Components/8530/z8530.cpp b/Components/8530/z8530.cpp index b4c9b0e22..a54b9451c 100644 --- a/Components/8530/z8530.cpp +++ b/Components/8530/z8530.cpp @@ -8,7 +8,10 @@ #include "z8530.hpp" +#ifndef NDEBUG #define NDEBUG +#endif + #define LOG_PREFIX "[SCC] " #include "../../Outputs/Log.hpp" diff --git a/Components/DiskII/IWM.cpp b/Components/DiskII/IWM.cpp index 94d194163..b8d4e6465 100644 --- a/Components/DiskII/IWM.cpp +++ b/Components/DiskII/IWM.cpp @@ -8,7 +8,10 @@ #include "IWM.hpp" +#ifndef NDEBUG #define NDEBUG +#endif + #define LOG_PREFIX "[IWM] " #include "../../Outputs/Log.hpp"