From e2e951ad0b331e319c9d6bb6f2cfa4fd271489bf Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 9 Apr 2024 21:49:35 -0400 Subject: [PATCH] Fix layout. --- Machines/Acorn/Archimedes/Video.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Machines/Acorn/Archimedes/Video.hpp b/Machines/Acorn/Archimedes/Video.hpp index fe84c5f09..4a80de502 100644 --- a/Machines/Acorn/Archimedes/Video.hpp +++ b/Machines/Acorn/Archimedes/Video.hpp @@ -317,7 +317,8 @@ struct Video { } // Advance cursor position. - if(cursor_pixel_ < 32) cursor_pixel_ += 2; } + if(cursor_pixel_ < 32) cursor_pixel_ += 2; + } /// @returns @c true if a vertical retrace interrupt has been signalled since the last call to @c interrupt(); @c false otherwise. bool interrupt() {