1
0
mirror of https://github.com/Gehstock/Mist_FPGA.git synced 2026-01-20 09:44:38 +00:00

Segasys1: fix sprite xpos (Star Jacker)

This commit is contained in:
Gyorgy Szombathelyi 2020-11-13 23:56:43 +01:00
parent 672fd9a5d4
commit 8ad920fb32
2 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ always @ ( posedge VCLKx8 ) if (VCLKx4_EN) begin
// get yofs/xpos/bank
2: begin
yofs <= hitsprvps[hitr];
xpos <= ((sprdt[9:0]+1)/2)+14;
xpos <= sprdt[8:1]+14;
bank <= { sprdt[13], sprdt[14], sprdt[15] };
spr_ofs <= 2;
phaseHD <= 3;