| 605 | } |
| 606 | |
| 607 | void ndspSetMasterVol(float volume) |
| 608 | { |
| 609 | LightLock_Lock(&ndspMaster.lock); |
| 610 | ndspMaster.masterVol = volume; |
| 611 | ndspMaster.flags |= MFLAG_MASTERVOL; |
| 612 | LightLock_Unlock(&ndspMaster.lock); |
| 613 | } |
| 614 | |
| 615 | float ndspGetMasterVol(void) |
| 616 | { |
nothing calls this directly
no test coverage detected