ソースを参照

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

pull/5232/head
Ray 3日前
committed by Saksham Goyal
コミット
ff8038b6b1
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 287D96BB5977A168
1個のファイルの変更1行の追加0行の削除
  1. +1
    -0
      src/rtext.c

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

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

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