| 1053 | } |
| 1054 | |
| 1055 | void S_memoryLoad(sfx_t *sfx) |
| 1056 | { |
| 1057 | // load the sound file... |
| 1058 | // |
| 1059 | if ( !S_LoadSound( sfx ) ) |
| 1060 | { |
| 1061 | // Com_Printf( S_COLOR_YELLOW "WARNING: couldn't load sound: %s\n", sfx->sSoundName ); |
| 1062 | sfx->bDefaultSound = true; |
| 1063 | } |
| 1064 | sfx->bInMemory = true; |
| 1065 | } |
| 1066 | |
| 1067 | //============================================================================= |
| 1068 | static qboolean S_CheckChannelStomp( int chan1, int chan2 ) |
no test coverage detected