ソースを参照

REVIEWED: `TextToPascal()`, fix https://github.com/raylibtech/rtools/issues/57

pull/5242/head
Ray 2ヶ月前
コミット
5dd97ecf2f
1個のファイルの変更1行の追加0行の削除
  1. +1
    -0
      src/rtext.c

+ 1
- 0
src/rtext.c ファイルの表示

@ -1954,6 +1954,7 @@ char *TextToPascal(const char *text)
{ {
j++; j++;
if ((text[j] >= 'a') && (text[j] <= 'z')) buffer[i] = text[j] - 32; if ((text[j] >= 'a') && (text[j] <= 'z')) buffer[i] = text[j] - 32;
else if ((text[j] >= '0') && (text[j] <= '9')) buffer[i] = text[j];
} }
} }
} }

読み込み中…
キャンセル
保存