diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-03-28 21:12:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-28 21:12:44 +0200 |
commit | 1ae8b2de38edd3f013226a88490cd3d4f83d2a61 (patch) | |
tree | c8dd1ee45b54b81a9d8b33f6cba7cd3ff02ff282 /scene/main/timer.cpp | |
parent | 0c7a15d777073860603f7f36f0eed731ff745ada (diff) | |
parent | 7119d355eb6dfe18df5d6f505c4216791bfdbd92 (diff) |
Merge pull request #59636 from akien-mga/string-remove-ttr
Diffstat (limited to 'scene/main/timer.cpp')
-rw-r--r-- | scene/main/timer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/main/timer.cpp b/scene/main/timer.cpp index 120b537e4f..5a5747e122 100644 --- a/scene/main/timer.cpp +++ b/scene/main/timer.cpp @@ -184,7 +184,7 @@ TypedArray<String> Timer::get_configuration_warnings() const { TypedArray<String> warnings = Node::get_configuration_warnings(); if (wait_time < 0.05 - CMP_EPSILON) { - warnings.push_back(TTR("Very low timer wait times (< 0.05 seconds) may behave in significantly different ways depending on the rendered or physics frame rate.\nConsider using a script's process loop instead of relying on a Timer for very low wait times.")); + warnings.push_back(RTR("Very low timer wait times (< 0.05 seconds) may behave in significantly different ways depending on the rendered or physics frame rate.\nConsider using a script's process loop instead of relying on a Timer for very low wait times.")); } return warnings; |