mirror of
https://github.com/86Box/86Box.git
synced 2025-01-22 09:11:50 -05:00
Just shut up the warning.
See above.
This commit is contained in:
parent
dd58fbfca1
commit
4325c78fa8
1 changed files with 1 additions and 1 deletions
|
@ -2441,7 +2441,7 @@ xga_hwcursor_draw(svga_t *svga, int displine)
|
|||
if (xga->interlace && xga->hwcursor_oddeven)
|
||||
xga->hwcursor_latch.addr += 16;
|
||||
|
||||
for (uint8_t x = 0; x < xga->hwcursor_latch.cur_xsize; x++) {
|
||||
for (int x = 0; x < xga->hwcursor_latch.cur_xsize; x++) {
|
||||
dat = cd[xga->hwcursor_latch.addr & 0x3ff];
|
||||
|
||||
comb = (dat >> ((x & 0x03) << 1)) & 0x03;
|
||||
|
|
Loading…
Reference in a new issue