diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-10-27 21:40:23 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-10-27 21:40:23 +0200 |
commit | b1ae184348b9de893d98dcd8e671d9df6ee599db (patch) | |
tree | 4520661ef7ab44f9e86c9dc3e01f3fec0c04a566 /platform/linuxbsd/tts_linux.h | |
parent | bcf8a21e5f26e9563edecc29c520c0eabfc5f169 (diff) | |
parent | a0253e593cbcde471d32b42d05ecd5fb34749103 (diff) | |
download | redot-engine-b1ae184348b9de893d98dcd8e671d9df6ee599db.tar.gz |
Merge pull request #84017 from rfht/master
TTS_Linux: Fix size_t template issue on OpenBSD by using int consistently
Diffstat (limited to 'platform/linuxbsd/tts_linux.h')
-rw-r--r-- | platform/linuxbsd/tts_linux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/linuxbsd/tts_linux.h b/platform/linuxbsd/tts_linux.h index ec68219689..2a3d33221d 100644 --- a/platform/linuxbsd/tts_linux.h +++ b/platform/linuxbsd/tts_linux.h @@ -72,8 +72,8 @@ class TTS_Linux : public Object { protected: void _load_voices(); - void _speech_event(size_t p_msg_id, size_t p_client_id, int p_type); - void _speech_index_mark(size_t p_msg_id, size_t p_client_id, int p_type, const String &p_index_mark); + void _speech_event(int p_msg_id, int p_type); + void _speech_index_mark(int p_msg_id, int p_type, const String &p_index_mark); public: static TTS_Linux *get_singleton(); |