| 2 | #include "JSystem/JAudio/System/JASWaveArcLoader.h" |
| 3 | |
| 4 | bool JASWaveBank::isLoading() { |
| 5 | for( u32 i = 0; i < getArcCount(); i++ ) { |
| 6 | JASWaveArc *arc = getWaveArc(i); |
| 7 | if (arc && arc->isLoading()) { |
| 8 | return true; |
| 9 | } |
| 10 | } |
| 11 | return false; |
| 12 | } |
no outgoing calls
no test coverage detected