Skip to content

Commit

Permalink
Merge pull request #724 from omf2097/adt/add-url-to-splash
Browse files Browse the repository at this point in the history
Add openomf.org to OpenOMF splash screen and fix BK encoder
  • Loading branch information
Vagabond authored Nov 3, 2024
2 parents 85dbb32 + 0e21be7 commit 672a3d8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Binary file modified resources/openomf.bk
Binary file not shown.
Binary file modified resources/openomf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion src/formats/palette.c
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,9 @@ void palette_save(sd_writer *writer, const vga_palette *pal) {
}

void palette_remaps_save(sd_writer *writer, const vga_remap_tables *remaps) {
sd_write_buf(writer, (char *)remaps, sizeof(vga_remap_tables));
if(remaps) {
sd_write_buf(writer, (char *)remaps, sizeof(vga_remap_tables));
}
}

void palette_load_player_colors(vga_palette *src, int player) {
Expand Down

0 comments on commit 672a3d8

Please sign in to comment.