瀏覽代碼

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

pull/5232/head
Ray 3 天之前
committed by Saksham Goyal
父節點
當前提交
ff8038b6b1
沒有發現已知的金鑰在資料庫的簽署中 GPG Key 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];
}
}
}

Loading…
取消
儲存