1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-01 13:58:20 +00:00

Makes it explicit that I want the reference.

This commit is contained in:
Thomas Harte 2018-10-25 23:18:34 -04:00
parent 53b00dea3f
commit 916710353a

View File

@ -342,7 +342,7 @@ class Base {
// Schedule a CRAM dot.
upcoming_cram_dots_.emplace_back();
auto dot = upcoming_cram_dots_.back();
CRAMDot &dot = upcoming_cram_dots_.back();
dot.location.row = write_pointer_.row;
dot.location.column = access_column;
dot.value = master_system_.colour_ram[ram_pointer_ & 0x1f];