1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-04-06 10:38:16 +00:00

Corrects typo; disables original colour ROM usage for now.

This commit is contained in:
Thomas Harte 2019-02-18 20:49:54 -05:00
parent e5addb27ec
commit d0b967ce53

View File

@ -10,7 +10,7 @@
#include <algorithm>
#define SUPPLY_COMPOSITE
//#define SUPPLY_COMPOSITE
using namespace Oric;
@ -72,7 +72,7 @@ void VideoOutput::set_colour_rom(const std::vector<uint8_t> &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;
}