calls from the ppu; calls the SLHook for any driver that needs it
| 482 | //calls from the ppu; |
| 483 | //calls the SLHook for any driver that needs it |
| 484 | void InputScanlineHook(uint8 *bg, uint8 *spr, uint32 linets, int final) |
| 485 | { |
| 486 | for(int port=0;port<2;port++) |
| 487 | joyports[port].driver->SLHook(port,bg,spr,linets,final); |
| 488 | portFC.driver->SLHook(bg,spr,linets,final); |
| 489 | } |
| 490 | |
| 491 | #include <iostream> |
| 492 | //binds JPorts[pad] to the driver specified in JPType[pad] |
no test coverage detected