Merge branch 'accurate' into portable

This commit is contained in:
Clownacy 2020-09-04 02:36:19 +01:00
commit 2963977cf9
2 changed files with 6 additions and 1 deletions

View file

@ -601,7 +601,7 @@ void ActCaret17(CARET *crt)
}
typedef void (*CARETFUNCTION)(CARET*);
CARETFUNCTION gpCaretFuncTbl[18] =
CARETFUNCTION gpCaretFuncTbl[] =
{
ActCaret00,
ActCaret01,

View file

@ -869,6 +869,11 @@ void StopOrganyaMusic(void)
memset(key_on, 0, sizeof(key_on));
memset(key_twin, 0, sizeof(key_twin));
// Put the main thread to sleep for 100 milliseconds... but why?
// Really, what's the point? All this does is cause an annoying
// stutter when a new song loads.
// I'd guess it avoids a race-condition with the Organya thread,
// but the earlier QuitMMTimer call already disables it.
Backend_Delay(100);
}