summaryrefslogtreecommitdiff
path: root/scene/main/timer.cpp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-08-09 14:25:31 +0200
committerGitHub <noreply@github.com>2019-08-09 14:25:31 +0200
commit7bb2215ed0d7415179a8b59ad4766a3b573cf696 (patch)
tree595b16a4ec53b373d44d59ecfae8bec2bd1aab71 /scene/main/timer.cpp
parent7bc984cd67fbc4a76e107d0e6f7d2c3fa2ba9de7 (diff)
parentaf5e0fff66d55d07a7910bcd7f170da2f952f7cb (diff)
Merge pull request #31213 from KoBeWi/explain_scenes
Replace ERR_EXPLAIN in scene/* code
Diffstat (limited to 'scene/main/timer.cpp')
-rwxr-xr-xscene/main/timer.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/scene/main/timer.cpp b/scene/main/timer.cpp
index 2ae950dad5..03d46fd28d 100755
--- a/scene/main/timer.cpp
+++ b/scene/main/timer.cpp
@@ -80,8 +80,7 @@ void Timer::_notification(int p_what) {
}
void Timer::set_wait_time(float p_time) {
- ERR_EXPLAIN("time should be greater than zero.");
- ERR_FAIL_COND(p_time <= 0);
+ ERR_FAIL_COND_MSG(p_time <= 0, "Time should be greater than zero.");
wait_time = p_time;
}
float Timer::get_wait_time() const {