mirror of
https://github.com/TomHarte/CLK.git
synced 2025-04-06 10:38:16 +00:00
Fix seeding of output_pointer_.
This commit is contained in:
parent
9d2841bf6a
commit
f0e70f18fd
@ -46,8 +46,8 @@ Base<personality>::Base() :
|
||||
// at a random position.
|
||||
fetch_pointer_.row = rand() % 262;
|
||||
fetch_pointer_.column = rand() % (Timing<personality>::CyclesPerLine - output_lag);
|
||||
output_pointer_.row = output_pointer_.row;
|
||||
output_pointer_.column = output_pointer_.column + output_lag;
|
||||
output_pointer_.row = fetch_pointer_.row;
|
||||
output_pointer_.column = fetch_pointer_.column + output_lag;
|
||||
}
|
||||
|
||||
template <Personality personality>
|
||||
|
Loading…
x
Reference in New Issue
Block a user