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 6a289b6 commit 33be5dd
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/audio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,8 @@ 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 33be5dd

Please sign in to comment.