Skip to content

Commit

Permalink
libretro: Ensure colour adjustments apply at game load time
Browse files Browse the repository at this point in the history
  • Loading branch information
carmiker committed Jun 16, 2024
1 parent 0390fa2 commit 9131a4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bsnes/target-libretro/libretro.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -900,9 +900,9 @@ bool retro_load_game(const retro_game_info *game)
emulator->configure("Audio/Frequency", SAMPLERATE);
program->filterRender = &Filter::None::render;
program->filterSize = &Filter::None::size;
program->updateVideoPalette();

update_variables();
program->updateVideoPalette();

if (string(game->path).endsWith(".gb") || string(game->path).endsWith(".gbc"))
{
Expand Down

0 comments on commit 9131a4c

Please sign in to comment.