Skip to content

Commit feec766

Browse files
committed
update for macOS 14
1 parent e660521 commit feec766

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

LEGv8-Simulator.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@
545545
"$(inherited)",
546546
"@executable_path/../Frameworks",
547547
);
548-
MACOSX_DEPLOYMENT_TARGET = 13.0;
548+
MACOSX_DEPLOYMENT_TARGET = 14.3;
549549
MARKETING_VERSION = 1.0;
550550
PRODUCT_BUNDLE_IDENTIFIER = "AdinAck.LEGv8-Simulator";
551551
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -579,7 +579,7 @@
579579
"$(inherited)",
580580
"@executable_path/../Frameworks",
581581
);
582-
MACOSX_DEPLOYMENT_TARGET = 13.0;
582+
MACOSX_DEPLOYMENT_TARGET = 14.3;
583583
MARKETING_VERSION = 1.0;
584584
PRODUCT_BUNDLE_IDENTIFIER = "AdinAck.LEGv8-Simulator";
585585
PRODUCT_NAME = "$(TARGET_NAME)";

LEGv8-Simulator/Utils/Interpreter.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -109,15 +109,15 @@ class Interpreter: ObservableObject {
109109
}
110110

111111
private func parseLiteral(_ raw: String) throws -> Int64 {
112-
if raw.contains("x") {
113-
if let literal = Int64(String(raw[raw.index(after: raw.firstIndex(of: "x")!)...]), radix: 16) {
114-
return literal
115-
}
116-
} else {
112+
// if raw.contains("x") {
113+
// if let literal = Int64(String(raw[raw.index(after: raw.firstIndex(of: "x")!)...]), radix: 16) {
114+
// return literal
115+
// }
116+
// } else {
117117
if let literal = Int64(raw) {
118118
return literal
119119
}
120-
}
120+
// }
121121

122122
throw AssemblerError.invalidLiteral(raw)
123123
}

LEGv8-Simulator/Views/Settings/AboutView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import SwiftUI
99

1010
struct AboutView: View {
11-
let version: String = "1.3.2 (Release)"
11+
let version: String = "1.3.3 (Release)"
1212

1313
var body: some View {
1414
HStack {

0 commit comments

Comments
 (0)