diff options
author | pattlebass <49322676+pattlebass@users.noreply.github.com> | 2022-07-27 15:35:01 +0300 |
---|---|---|
committer | pattlebass <49322676+pattlebass@users.noreply.github.com> | 2022-07-27 22:54:41 +0300 |
commit | 130e715ab9a86c7363424e25df85e68ab52e85ec (patch) | |
tree | 2c2baae8a108b3ca39d20c50948923e3efe0b73b /core/os | |
parent | 47edfa876908408828cd3b120b32e274d646ab8b (diff) |
HTML5: Add support for `Input.vibrate_handheld()`
Diffstat (limited to 'core/os')
-rw-r--r-- | core/os/os.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp index b9daf6fa53..619e3eb06f 100644 --- a/core/os/os.cpp +++ b/core/os/os.cpp @@ -159,7 +159,7 @@ int OS::get_process_id() const { } void OS::vibrate_handheld(int p_duration_ms) { - WARN_PRINT("vibrate_handheld() only works with Android and iOS"); + WARN_PRINT("vibrate_handheld() only works with Android, iOS and HTML5"); } bool OS::is_stdout_verbose() const { |