Merge pull request #112379 from bruvzg/tts64id

Make `utterance_id` 64-bit.
This commit is contained in:
Thaddeus Crews 2025-11-14 14:23:17 -06:00
commit e46c2ea3fa
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
34 changed files with 69 additions and 63 deletions

View file

@ -266,7 +266,7 @@ JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_back(JNIEnv *env, jcl
}
}
JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_ttsCallback(JNIEnv *env, jclass clazz, jint event, jint id, jint pos) {
JNIEXPORT void JNICALL Java_org_godotengine_godot_GodotLib_ttsCallback(JNIEnv *env, jclass clazz, jint event, jlong id, jint pos) {
TTS_Android::_java_utterance_callback(event, id, pos);
}