Skip to content

Commit

Permalink
Style nits
Browse files Browse the repository at this point in the history
  • Loading branch information
realnc committed May 11, 2020
1 parent 3ff648c commit ea666ee
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libretro/libretro.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,8 @@ static void check_variables()
update_dosbox_variable(false, "mixer", "blocksize", core_options["blocksize"].toString());
update_dosbox_variable(false, "mixer", "prebuffer", core_options["prebuffer"].toString());
update_dosbox_variable(false, "pci", "voodoo", core_options["voodoo"].toString());
update_dosbox_variable(false, "pci", "voodoomem", core_options["voodoo_memory_size"].toString());
update_dosbox_variable(
false, "pci", "voodoomem", core_options["voodoo_memory_size"].toString());

mount_overlay = core_options["save_overlay"].toBool();
} else {
Expand Down
3 changes: 3 additions & 0 deletions libretro/libretro_gfx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,13 @@ void GFX_EndUpdate(const Bit16u* const changedLines)
// Stubs
void GFX_SetTitle(Bit32s /*cycles*/, int /*frameskip*/, bool /*paused*/)
{ }

void GFX_ShowMsg(char const* /*format*/, ...)
{ }

void GFX_Events()
{ }

void GFX_SetPalette(Bitu /*start*/, Bitu /*count*/, GFX_PalEntry* /*entries*/)
{ }

Expand Down

0 comments on commit ea666ee

Please sign in to comment.