Skip to content

Commit

Permalink
core, big endian fix (save/load)
Browse files Browse the repository at this point in the history
  • Loading branch information
irixxxx committed Mar 21, 2024
1 parent a33c391 commit 64360d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pico/state.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ static const char * const chunk_names[CHUNK_DEFAULT_COUNT] = {
"32X events",
};

static int write_chunk(chunk_name_e name, int len, void *data, void *file)
static int write_chunk(unsigned char name, int len, void *data, void *file)
{
size_t bwritten = 0;
bwritten += areaWrite(&name, 1, 1, file);
Expand Down

0 comments on commit 64360d1

Please sign in to comment.