Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/emulator.c
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ typedef struct {

const size_t s_emulator_state_size = sizeof(EmulatorState);
#ifdef RGBDS_LIVE
#ifndef BREAKPOINTS_MAX_BANKS_NUMBER 1
#ifndef BREAKPOINTS_MAX_BANKS_NUMBER
#define BREAKPOINTS_MAX_BANKS_NUMBER 1
#endif
typedef uint32_t breakpoints_type;
Expand Down Expand Up @@ -4665,7 +4665,7 @@ static inline uint32_t emulator_get_banked_PC_inline(Emulator *e) {
}
return pc;
#else
return REG.PC
return REG.PC;
#endif
}

Expand Down
Loading