1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 08:49:37 +00:00

Added omitted semicolon.

This commit is contained in:
Thomas Harte 2017-08-05 09:18:55 -04:00
parent 2b476554e7
commit 4b19cf60df

View File

@ -633,7 +633,7 @@ class ConcreteMachine:
/// Another Z80 entry point; indicates that a partcular run request has concluded. /// Another Z80 entry point; indicates that a partcular run request has concluded.
void flush() { void flush() {
// Just flush the AY. // Just flush the AY.
ay_.update() ay_.update();
ay_.flush(); ay_.flush();
} }