Skip to content

Commit

Permalink
NSF_NOSOUND had start/setup reversed
Browse files Browse the repository at this point in the history
  • Loading branch information
bbbradsmith committed May 12, 2024
1 parent 73f830b commit 8c89653
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shared/sound.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -676,12 +676,12 @@ int64_t sound_play_time(uint32_t* mark_index)
return 0;
}

bool sound_start()
bool sound_setup()
{
return false;
}

bool sound_setup(const NSFCore* core)
bool sound_start(const NSFCore* core)
{
(void)core;
return false;
Expand Down

0 comments on commit 8c89653

Please sign in to comment.