mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 07:17:42 -05:00
Merge pull request #24385 from hpvb/reduce-string-coew
Reduce String CoW
This commit is contained in:
@@ -583,7 +583,7 @@ static void clear_touches() {
|
||||
character.parse_utf8([p_text UTF8String]);
|
||||
keyboard_text = keyboard_text + character;
|
||||
OSIPhone::get_singleton()->key(character[0] == 10 ? KEY_ENTER : character[0], true);
|
||||
printf("inserting text with character %i\n", character[0]);
|
||||
printf("inserting text with character %lc\n", (CharType)character[0]);
|
||||
};
|
||||
|
||||
- (void)audioRouteChangeListenerCallback:(NSNotification *)notification {
|
||||
|
||||
Reference in New Issue
Block a user