Skip to content

Commit 6ce5946

Browse files
authored
fixing ifndef error (#69)
1 parent 3677e74 commit 6ce5946

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/emulator.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,7 @@ typedef struct {
693693

694694
const size_t s_emulator_state_size = sizeof(EmulatorState);
695695
#ifdef RGBDS_LIVE
696-
#ifndef BREAKPOINTS_MAX_BANKS_NUMBER 1
696+
#ifndef BREAKPOINTS_MAX_BANKS_NUMBER
697697
#define BREAKPOINTS_MAX_BANKS_NUMBER 1
698698
#endif
699699
typedef uint32_t breakpoints_type;
@@ -4665,7 +4665,7 @@ static inline uint32_t emulator_get_banked_PC_inline(Emulator *e) {
46654665
}
46664666
return pc;
46674667
#else
4668-
return REG.PC
4668+
return REG.PC;
46694669
#endif
46704670
}
46714671

0 commit comments

Comments
 (0)