| 939 | static float Stream_volume = 1.0f; |
| 940 | static float Stream_master_volume = 1.0f; |
| 941 | void StreamVolume(float master_volume) { |
| 942 | Stream_master_volume = master_volume; |
| 943 | User_audio_stream.SetVolume(Stream_volume * master_volume); |
| 944 | } |
| 945 | // these functions are the 'simplified' stream interface from Jeff (most of this code is from Jeff) |
| 946 | int StreamPlay(const char *filename, float volume, int flags) { |
| 947 | int retval = -1; |
no test coverage detected