mirror of
https://github.com/TomHarte/CLK.git
synced 2025-04-05 04:37:41 +00:00
Remove errant semicolon.
This commit is contained in:
parent
b7d1bff0c7
commit
6d43576db7
@ -45,7 +45,7 @@ template <
|
||||
result +=
|
||||
(destination & 0xf0) +
|
||||
(source & 0xf0) +
|
||||
(((9 - result) >> 4) & 0x06); // i.e. ((result > 0x09) ? 0x06 : 0x00);
|
||||
(((9 - result) >> 4) & 0x06); // i.e. ((result > 0x09) ? 0x06 : 0x00)
|
||||
result += ((0x9f - result) >> 4) & 0x60; // i.e. ((result > 0x9f) ? 0x60 : 0x00)
|
||||
|
||||
// Set all flags essentially as if this were normal addition.
|
||||
|
Loading…
x
Reference in New Issue
Block a user