Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
710lucas committed Jul 30, 2024
1 parent 64d40d0 commit d2c042a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/emulator/memory/memory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ byte Memory::read(long position){
}

void Memory::write(long position, byte data){
if (position >= 0 && position < this->memory.size()) {
if (position >= 0 && position < this->memory.size()) {
this->memory[position] = data;
} else {
}
Expand Down

0 comments on commit d2c042a

Please sign in to comment.