Skip to content

Commit

Permalink
Early return
Browse files Browse the repository at this point in the history
  • Loading branch information
v1bh475u committed Sep 1, 2024
1 parent 2e9c928 commit 6a289b6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/audio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,15 @@ void APU::initializeReadWriteHandlers()
return;
}

<<<<<<< HEAD
mMap->setAudioReadHandler([this](Word address)
{ return this->readByte(address); });
mMap->setAudioWriteHandler([this](Word address, Byte value)
{ this->writeByte(address, value); });
=======
mMap->setAudioReadHandler([this](Word address) { return this->readByte(address); });
mMap->setAudioWriteHandler([this](Word address, Byte value) { this->writeByte(address, value); });
>>>>>>> bab3ce9 (Early return)
}
void APU::test()
{
Expand Down

0 comments on commit 6a289b6

Please sign in to comment.