| 673 | } |
| 674 | |
| 675 | void DemoWrite3DSound(int16_t soundidx, uint16_t objnum, int priority, float volume) { |
| 676 | cf_WriteByte(Demo_cfp, DT_3D_SOUND); |
| 677 | cf_WriteShort(Demo_cfp, objnum); |
| 678 | cf_WriteShort(Demo_cfp, soundidx); |
| 679 | cf_WriteFloat(Demo_cfp, volume); |
| 680 | } |
| 681 | |
| 682 | void DemoRead3DSound(void) { |
| 683 | int objnum; |
no test coverage detected