Added a bugfix

This commit is contained in:
Clownacy 2019-02-12 04:32:07 +00:00
parent 1bcbfa846f
commit 2f5472547d
2 changed files with 8 additions and 0 deletions

View file

@ -1,2 +1,5 @@
Main.cpp : void SystemTask()
Pixel intended for the second alternate up key to be the plus key, Japanese keyboards have the plus key where the semi-colon key is, causing errors on other keyboard layouts)
SelStage.cpp : int StageSelectLoop(int *p_event)
The screencap that serves as the menu's background was being drawn with transparency enabled. This can cause moving sprites (like the text) to leave a trail.

View file

@ -165,7 +165,12 @@ int StageSelectLoop(int *p_event)
if (tscRet == 2)
return 2;
#ifdef FIX_BUGS
PutBitmap4(&rcView, 0, 0, &rcView, 10);
#else
// The original accidentally drew the screencap with transparency enabled
PutBitmap3(&rcView, 0, 0, &rcView, 10);
#endif
PutStageSelectObject();
PutTextScript();