added missing Serial call for teensy println

This commit is contained in:
Jorj Bauer 2021-01-17 21:04:06 -05:00
parent ed6d50dd62
commit 03981b2b77
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ void Mouse::writeSwitches(uint8_t s, uint8_t v)
void Mouse::loadROM(uint8_t *toWhere)
{
#ifdef TEENSYDUINO
println("loading Mouse rom");
Serial.println("loading Mouse rom");
for (uint16_t i=0; i<=0xFF; i++) {
toWhere[i] = pgm_read_byte(&romData[i]);
}