From c720f3910a9590d3709bec3bf5804d3643470cf6 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 23 Mar 2024 20:13:25 -0400 Subject: [PATCH] Avoid implicit sign cast. --- Machines/Acorn/Archimedes/Video.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/Acorn/Archimedes/Video.hpp b/Machines/Acorn/Archimedes/Video.hpp index 79bc66825..5256bbfcc 100644 --- a/Machines/Acorn/Archimedes/Video.hpp +++ b/Machines/Acorn/Archimedes/Video.hpp @@ -230,7 +230,7 @@ struct Video { const Outputs::CRT::CRT &crt() const { return crt_; } int clock_divider() const { - return clock_divider_; + return static_cast(clock_divider_); } private: