| 492 | } |
| 493 | |
| 494 | void driveclick_insert (int drive, int eject) |
| 495 | { |
| 496 | if (!click_initialized) |
| 497 | return; |
| 498 | if (!driveclick_wave_initialized) |
| 499 | return; |
| 500 | if (!currprefs.floppyslots[drive].dfxclick) |
| 501 | return; |
| 502 | if (eject) |
| 503 | drv_has_spun[drive] = 0; |
| 504 | if (drv_has_disk[drive] == 0 && !eject) |
| 505 | dr_audio_activate (); |
| 506 | drv_has_disk[drive] = !eject; |
| 507 | } |
| 508 | |
| 509 | void driveclick_check_prefs (void) |
| 510 | { |
no test coverage detected