Browse Source

Disallow setting the AudioServer's 'global_rate_scale' to a value equal or inferior to 0

Michael Alexsander 4 years ago
parent
commit
d7f2c31a05
1 changed files with 2 additions and 0 deletions
  1. 2 0
      servers/audio_server.cpp

+ 2 - 0
servers/audio_server.cpp

@@ -905,6 +905,8 @@ bool AudioServer::is_bus_channel_active(int p_bus, int p_channel) const {
 }
 
 void AudioServer::set_global_rate_scale(float p_scale) {
+	ERR_FAIL_COND(p_scale <= 0);
+
 	global_rate_scale = p_scale;
 }