| 67 | } |
| 68 | |
| 69 | int FCEUI_NetplayStart(int nlocal, int divisor) |
| 70 | { |
| 71 | FCEU_FlushGameCheats(0, 0); //Save our pre-netplay cheats. |
| 72 | FCEU_LoadGameCheats(0); // Load them again, for pre-multiplayer action. |
| 73 | |
| 74 | FCEUnetplay = 1; |
| 75 | memset(netjoy,0,sizeof(netjoy)); |
| 76 | numlocal = nlocal; |
| 77 | netdivisor = divisor; |
| 78 | netdcount = 0; |
| 79 | return(1); |
| 80 | } |
| 81 | |
| 82 | int FCEUNET_SendCommand(uint8 cmd, uint32 len) |
| 83 | { |
no test coverage detected