wrapper function for above so I can guarantee that we don't attempt any audio-dumping during this call because of a z_malloc() fail recovery...
| 968 | // of a z_malloc() fail recovery... |
| 969 | // |
| 970 | qboolean S_LoadSound( sfx_t *sfx ) |
| 971 | { |
| 972 | gbInsideLoadSound = qtrue; // !!!!!!!!!!!!! |
| 973 | |
| 974 | qboolean bReturn = S_LoadSound_Actual( sfx ); |
| 975 | |
| 976 | gbInsideLoadSound = qfalse; // !!!!!!!!!!!!! |
| 977 | |
| 978 | return bReturn; |
| 979 | } |
| 980 | |
| 981 | #ifdef USE_OPENAL |
| 982 | /* |
no test coverage detected