From a8b116e217f954c5292a1378e55b3adfc78bb4f7 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 17 Sep 2018 20:08:20 -0400 Subject: [PATCH] Turns down the Apple II brightness a little. So that light blue is more like a blue. --- Machines/AppleII/Video.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/AppleII/Video.cpp b/Machines/AppleII/Video.cpp index c65117f9f..fb064673b 100644 --- a/Machines/AppleII/Video.cpp +++ b/Machines/AppleII/Video.cpp @@ -20,7 +20,7 @@ VideoBase::VideoBase(bool is_iie, std::function &&target) : crt_->set_composite_sampling_function( "float composite_sample(usampler2D sampler, vec2 coordinate, float phase, float amplitude)" "{" - "return clamp(texture(sampler, coordinate).r, 0.0, 1.0);" + "return clamp(texture(sampler, coordinate).r, 0.0, 0.66);" "}"); // Show only the centre 75% of the TV frame.