From d0b967ce539abe9cccd5eb990b1530628403553b Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 18 Feb 2019 20:49:54 -0500 Subject: [PATCH] Corrects typo; disables original colour ROM usage for now. --- Machines/Oric/Video.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Machines/Oric/Video.cpp b/Machines/Oric/Video.cpp index 9b2177fb0..270c489ed 100644 --- a/Machines/Oric/Video.cpp +++ b/Machines/Oric/Video.cpp @@ -10,7 +10,7 @@ #include -#define SUPPLY_COMPOSITE +//#define SUPPLY_COMPOSITE using namespace Oric; @@ -72,7 +72,7 @@ void VideoOutput::set_colour_rom(const std::vector &rom) { colour[3] = uint8_t((rom[index+1] & 0x0f) << 4); // Extracting just the visible part of the stored range of values - // means etracting the range 0x40 to 0xe0. + // means extracting the range 0x40 to 0xe0. for(int sub = 0; sub < 4; ++sub) { colour[sub] = ((colour[sub] - 0x40) * 255) / 0xa0; }