Commit d08076e 1 parent 6ebc6ed commit d08076e Copy full SHA for d08076e
File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -486,7 +486,7 @@ PX68K は以下の成分からできています。
486
486
2014/02/15 時刻取得時、月がずれるのを修正 (thanks to ぴかよ氏)
487
487
2014/02/18 Android版/PSP版/iOS版のアプリアイコンを追加 (thanks to なおき氏)
488
488
2014/02/18 iOS 版 Ver0.03、Android 版 Ver0.09、PSP 版 Ver0.08 リリース
489
- 2014/02/24 特殊プライオリティで全面に持ってくるグラフィックの色が黒く
489
+ 2014/02/24 特殊プライオリティで前面に持ってくるグラフィックの色が黒く
490
490
なってしまうのを修正
491
491
2014/02/26 16x16 BG/Sprite 描画時に 8x8 の処理を呼び出していたのを修正
492
492
2014/02/27 グラフィック画面高速クリア時に白でクリアしてしまう場合が
Original file line number Diff line number Diff line change @@ -1446,16 +1446,17 @@ void FASTCALL Grp_DrawLine4h(void)
1446
1446
}
1447
1447
1448
1448
x = GrphScrollX [0 ] & 0x1ff ;
1449
- x = ((x & 0x1ff ) ^ 0x1ff ) + 1 ;
1450
-
1451
1449
srcp = (WORD * )(GVRAM + y + x * 2 );
1452
1450
destp = (WORD * )Grp_LineBuf ;
1453
1451
1452
+ x = ((x & 0x1ff ) ^ 0x1ff ) + 1 ;
1453
+
1454
1454
for (i = 0 ; i < TextDotX ; ++ i ) {
1455
1455
v = * srcp ++ ;
1456
1456
* destp ++ = GrphPal [(v >> bits ) & 0x0f ];
1457
1457
1458
1458
if (-- x == 0 ) {
1459
+ srcp -= 0x200 ;
1459
1460
bits ^= 4 ;
1460
1461
x = 512 ;
1461
1462
}
You can’t perform that action at this time.
0 commit comments