1
0
mirror of https://github.com/TomHarte/CLK.git synced 2026-04-26 19:17:52 +00:00

Corrects various old-fashioned bits of indentation, plus the odd const.

This commit is contained in:
Thomas Harte
2019-12-22 00:00:23 -05:00
parent 05d77d3297
commit a847654ef2
10 changed files with 64 additions and 123 deletions
+1 -2
View File
@@ -352,8 +352,7 @@ void TMS9918::run_for(const HalfCycles cycles) {
// Output video stream.
// --------------------
#define intersect(left, right, code) \
{ \
#define intersect(left, right, code) { \
const int start = std::max(read_pointer_.column, left); \
const int end = std::min(end_column, right); \
if(end > start) {\