| 324 | // |
| 325 | //***************************************************************************** |
| 326 | bool DLParser_Initialise() |
| 327 | { |
| 328 | gFirstCall = true; |
| 329 | |
| 330 | // Reset scissor to default |
| 331 | scissors.top = 0; |
| 332 | scissors.left = 0; |
| 333 | scissors.right = 320; |
| 334 | scissors.bottom = 240; |
| 335 | |
| 336 | GBIMicrocode_Reset(); |
| 337 | |
| 338 | #ifdef DAEDALUS_FAST_TMEM |
| 339 | //Clear pointers in TMEM block //Corn |
| 340 | memset(gTlutLoadAddresses, 0, sizeof(gTlutLoadAddresses)); |
| 341 | #endif |
| 342 | return true; |
| 343 | } |
| 344 | |
| 345 | //***************************************************************************** |
| 346 | // |
no test coverage detected