diff --git a/src/s_sound.cpp b/src/s_sound.cpp index cac01b111..9e2830cd9 100644 --- a/src/s_sound.cpp +++ b/src/s_sound.cpp @@ -824,7 +824,8 @@ static bool Validate(const FVector3 &value, const float limit, const char *const if (!valid) { - Printf(TEXTCOLOR_RED "Invalid sound %s " TEXTCOLOR_WHITE "(%f, %f, %f)", name, value.X, value.Y, value.Z); + // Sound position and velocity have Y and Z axes swapped comparing to map coordinate system + Printf(TEXTCOLOR_RED "Invalid sound %s " TEXTCOLOR_WHITE "(%f, %f, %f)", name, value.X, value.Z, value.Y); if (actor == nullptr) {