diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-12-16 13:47:11 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-12-16 13:47:11 +0100 |
commit | ffed638cbc22cb32ba9086a2ed48f62e800d876b (patch) | |
tree | 50a95bd964e94a1481a44afc0b583b7adb02ba64 /core/os/os.cpp | |
parent | 912fd3f0e15c3363809e0d69fb94207166aa4f37 (diff) | |
parent | 4a991887bf3dd5fbb687fb379f06ac85aa4a6245 (diff) |
Merge pull request #70116 from Calinou/vibrate-handheld-silence-warning
Silence `Input.vibrate_handheld()` warning as it's already documented
Diffstat (limited to 'core/os/os.cpp')
-rw-r--r-- | core/os/os.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp index 6d567ffd43..6b199e883f 100644 --- a/core/os/os.cpp +++ b/core/os/os.cpp @@ -155,10 +155,6 @@ int OS::get_process_id() const { return -1; } -void OS::vibrate_handheld(int p_duration_ms) { - WARN_PRINT("vibrate_handheld() only works with Android, iOS and Web"); -} - bool OS::is_stdout_verbose() const { return _verbose_stdout; } |