| Previous | 199869 Revisions | Next |
| r31580 Sunday 10th August, 2014 at 03:37:33 UTC by Oliver Stöneberg |
|---|
| added assert for index out-of-bounds access with rcdino4 (nw) |
| [src/mame/drivers] | funworld.c |
| r31579 | r31580 | |
|---|---|---|
| 6418 | 6418 | while (j < 0x100); |
| 6419 | 6419 | |
| 6420 | 6420 | j &= 0xff; |
| 6421 | do {} while (!rcdino4_keys80[++i - 0x81]); | |
| 6421 | do { | |
| 6422 | assert((i+1 - 0x81) >= 0 && (i+1 - 0x81) < ARRAY_LENGTH(rcdino4_keys80)); | |
| 6423 | } while (!rcdino4_keys80[++i - 0x81]); | |
| 6422 | 6424 | |
| 6423 | 6425 | if ((i == 0xa4) |
| 6424 | 6426 | || (i == 0xb0) |
| Previous | 199869 Revisions | Next |