Просмотр исходного кода

linux: Fixed using wrong constant for input text size.

Philipp Wiesemann 8 лет назад
Родитель
Сommit
a725efa4bc
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/core/linux/SDL_ibus.c

+ 1 - 1
src/core/linux/SDL_ibus.c

@@ -120,7 +120,7 @@ IBus_MessageHandler(DBusConnection *conn, DBusMessage *msg, void *user_data)
         
         
         text = IBus_GetVariantText(conn, &iter, dbus);
         text = IBus_GetVariantText(conn, &iter, dbus);
         if (text && *text) {
         if (text && *text) {
-            char buf[SDL_TEXTEDITINGEVENT_TEXT_SIZE];
+            char buf[SDL_TEXTINPUTEVENT_TEXT_SIZE];
             size_t text_bytes = SDL_strlen(text), i = 0;
             size_t text_bytes = SDL_strlen(text), i = 0;
             
             
             while (i < text_bytes) {
             while (i < text_bytes) {