Added a bugfix
This commit is contained in:
parent
1bcbfa846f
commit
2f5472547d
2 changed files with 8 additions and 0 deletions
|
@ -1,2 +1,5 @@
|
||||||
Main.cpp : void SystemTask()
|
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)
|
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.
|
||||||
|
|
|
@ -165,7 +165,12 @@ int StageSelectLoop(int *p_event)
|
||||||
if (tscRet == 2)
|
if (tscRet == 2)
|
||||||
return 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);
|
PutBitmap3(&rcView, 0, 0, &rcView, 10);
|
||||||
|
#endif
|
||||||
PutStageSelectObject();
|
PutStageSelectObject();
|
||||||
PutTextScript();
|
PutTextScript();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue