1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-07 08:26:28 +00:00

Added explicit signedness cast.

This commit is contained in:
Thomas Harte
2017-07-25 22:49:03 -04:00
parent e90d128a26
commit cda223ffc0

View File

@@ -339,7 +339,7 @@ Cycles Machine::perform_bus_operation(CPU::MOS6502::BusOperation operation, uint
}
}
return Cycles(cycles);
return Cycles((int)cycles);
}
void Machine::flush() {