mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-25 01:32:55 +00:00
Resolves potential random RAM writes at startup.
This commit is contained in:
parent
91a3d42919
commit
9f32fa7f5b
@ -44,8 +44,8 @@ class VideoOutput {
|
|||||||
int v_sync_start_position_, v_sync_end_position_, counter_period_;
|
int v_sync_start_position_, v_sync_end_position_, counter_period_;
|
||||||
|
|
||||||
// Output target and device.
|
// Output target and device.
|
||||||
uint8_t *rgb_pixel_target_;
|
uint8_t *rgb_pixel_target_ = nullptr;
|
||||||
uint32_t *composite_pixel_target_;
|
uint32_t *composite_pixel_target_ = nullptr;
|
||||||
uint32_t colour_forms_[8];
|
uint32_t colour_forms_[8];
|
||||||
Outputs::Display::InputDataType data_type_;
|
Outputs::Display::InputDataType data_type_;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user