Skip to content

Commit

Permalink
Last commit did not compile in DEBUG mode
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkwhoffmann committed Oct 2, 2024
1 parent f15b3be commit f5b3b95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Emulator/Components/CPU/Peddle/Peddle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ template u16 Peddle::addrMask<MOS_8502>() const;
void
Peddle::pullDownNmiLine(u8 mask)
{
assert(bit != 0);
assert(mask != 0);

// Check for falling edge on physical line
if (!nmiLine) {
Expand Down Expand Up @@ -139,7 +139,7 @@ Peddle::pullDownRdyLine(u8 mask)
void
Peddle::releaseRdyLine(u8 mask)
{
assert(source != 0);
assert(mask != 0);

auto old = rdyLine;
rdyLine &= ~mask;
Expand Down
2 changes: 1 addition & 1 deletion Emulator/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#define SNP_BETA 2

// Uncomment these settings in a release build
#define RELEASEBUILD
// #define RELEASEBUILD


//
Expand Down

0 comments on commit f5b3b95

Please sign in to comment.