Skip to content

Commit

Permalink
Remove extra byte from mail data preamble
Browse files Browse the repository at this point in the history
  • Loading branch information
Lorenzooone committed Jul 10, 2023
1 parent cd982c0 commit 5f6927b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/sio_buffers.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

#define DEFAULT_FILLER 0

#define USELESS_SYNC_BYTES 6
#define USELESS_SYNC_BYTES 5
#define USELESS_SYNC_VALUE 0x20

#define NUM_SIZES 4
Expand Down
2 changes: 1 addition & 1 deletion source/config_settings.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ static u16 applied_ball;
static u8 egg_met_location;
static u8 first_set_egg_met_location;

const struct version_t version = { .main_version = 1, .sub_version = 1, .revision_version = 9, .revision_letter = CONSOLE_LETTER};
const struct version_t version = { .main_version = 1, .sub_version = 1, .revision_version = 10, .revision_letter = CONSOLE_LETTER};
const u8* egg_valid_met_locations[NUMBER_OF_GAMES+FIRST_VERSION_ID] = {valid_egg_locations_rs_bin, valid_egg_locations_rs_bin, valid_egg_locations_rs_bin, valid_egg_locations_e_bin, valid_egg_locations_frlg_bin, valid_egg_locations_frlg_bin};

void set_default_settings() {
Expand Down

0 comments on commit 5f6927b

Please sign in to comment.