- Reverted changes, as still crashes on some computers, and it was a ugly hack

This commit is contained in:
shashclp 2007-01-21 20:11:35 +00:00
parent d07811e483
commit 36aa695c28
1 changed files with 3 additions and 3 deletions

View File

@ -995,7 +995,7 @@ INLINE void extRotBG2(GPU * gpu, u8 num, u8 * DST, u16 H, s32 X, s32 Y, s16 PA,
y1 = (mapinfo & 0x800) ? 7 - (auxY&7) : (auxY&7); y1 = (mapinfo & 0x800) ? 7 - (auxY&7) : (auxY&7);
coul = tile[(mapinfo&0x3FF)*64 + x1 + (y1<<3)]; coul = tile[(mapinfo&0x3FF)*64 + x1 + (y1<<3)];
if(coul) if(coul)
renderline_setFinalColor(gpu,0,num,dst, T1ReadWord(pal, (coul + (mapinfo>>12)*0x100) << 1),auxX>>3,auxY>>3); renderline_setFinalColor(gpu,0,num,dst, T1ReadWord(pal, (coul + (mapinfo>>12)*0x100) << 1),i,Y);
}) })
} }
@ -1008,7 +1008,7 @@ INLINE void extRotBG2(GPU * gpu, u8 num, u8 * DST, u16 H, s32 X, s32 Y, s16 PA,
{ {
mapinfo = map[auxX + auxY * lg]; mapinfo = map[auxX + auxY * lg];
if(mapinfo) if(mapinfo)
renderline_setFinalColor(gpu,0,num,dst, T1ReadWord(pal, mapinfo << 1),auxX,auxY); renderline_setFinalColor(gpu,0,num,dst, T1ReadWord(pal, mapinfo << 1),i,Y);
}) })
} }
return; return;
@ -1019,7 +1019,7 @@ INLINE void extRotBG2(GPU * gpu, u8 num, u8 * DST, u16 H, s32 X, s32 Y, s16 PA,
{ {
mapinfo = T1ReadWord(map, (auxX + auxY * lg) << 1); mapinfo = T1ReadWord(map, (auxX + auxY * lg) << 1);
if ((mapinfo) && (mapinfo & 0x8000)) if ((mapinfo) && (mapinfo & 0x8000))
renderline_setFinalColor(gpu,0,num,dst, mapinfo,auxX,auxY); renderline_setFinalColor(gpu,0,num,dst, mapinfo,i,Y);
}) })
} }
return; return;