| 9 | volatile S32 gGridIterActive = 0; |
| 10 | |
| 11 | void xGridBoundInit(xGridBound* bound, void* data) |
| 12 | { |
| 13 | bound->data = data; |
| 14 | bound->gx = -1; |
| 15 | bound->gz = -1; |
| 16 | bound->ingrid = 0; |
| 17 | bound->oversize = 0; |
| 18 | bound->head = 0; |
| 19 | bound->next = 0; |
| 20 | bound->gpad = 0xea; |
| 21 | } |
| 22 | |
| 23 | // FIXME: Usual floating point problems, floating point loads get pulled to the start. |
| 24 | // Also, there's something funny going on with the malloc + memset at the end, |
no outgoing calls
no test coverage detected