Using a u8 to index a 0x8000 array it not a good idea :)

thanks to riccardom for reporting.
This commit is contained in:
yabause 2008-10-19 16:52:41 +00:00
parent 95be4ade56
commit 106c53705e
1 changed files with 2 additions and 2 deletions

View File

@ -36,8 +36,8 @@ typedef struct
BOOL full;
u8 irq;
u8 sendPos;
u8 recvPos;
u16 sendPos;
u16 recvPos;
u32 buf[0x8000];
} FIFO;