From 33d047c7035dcc7021d9e6627ccc02abd56efcf8 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 6 Oct 2025 14:38:40 -0400 Subject: [PATCH] Add a `const`. --- Outputs/CRT/CRT.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Outputs/CRT/CRT.cpp b/Outputs/CRT/CRT.cpp index 671d9cc0f..cee633ed8 100644 --- a/Outputs/CRT/CRT.cpp +++ b/Outputs/CRT/CRT.cpp @@ -504,7 +504,7 @@ Outputs::Display::Rect CRT::get_rect_for_area( int number_of_lines, int first_cycle_after_sync, int number_of_cycles, - float aspect_ratio + const float aspect_ratio ) const { assert(number_of_cycles > 0); assert(number_of_lines > 0);