1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-15 06:52:34 +02:00

Implement opcode 03d7

This commit is contained in:
Filip Gawin 2018-08-12 17:34:59 +02:00
parent 7b8e7a4e9f
commit a8bdc83b0e

View File

@ -11329,9 +11329,9 @@ void opcode_03d6(const ScriptArguments& args, const ScriptString gxtEntry) {
@arg coord Coordinates
*/
void opcode_03d7(const ScriptArguments& args, ScriptVec3 coord) {
RW_UNIMPLEMENTED_OPCODE(0x03d7);
RW_UNUSED(coord);
RW_UNUSED(args);
auto world = args.getWorld();
auto& wav = world->sound.getSoundRef(world->missionAudio);
wav.setPosition(coord);
}
/**