mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-16 18:30:32 +00:00
Change phase from int to uint8_t
output_colour_burst expects a uint8_t so may as well make that clear.
This commit is contained in:
parent
81ad864659
commit
d12316dfcf
@ -469,9 +469,9 @@ template <class BusHandler, bool is_iie> class Video: public VideoBase {
|
||||
// Supply the real phase value if this is an Apple build.
|
||||
// TODO: eliminate UGLY HACK.
|
||||
#if defined(__APPLE__) && !defined(IGNORE_APPLE)
|
||||
constexpr int phase = 224;
|
||||
constexpr uint8_t phase = 224;
|
||||
#else
|
||||
constexpr int phase = 192;
|
||||
constexpr uint8_t phase = 192;
|
||||
#endif
|
||||
|
||||
crt_.output_colour_burst((colour_burst_end - colour_burst_start) * 14, phase);
|
||||
|
Loading…
x
Reference in New Issue
Block a user