Replace "unsigned char" with "uint8_t"

This commit is contained in:
GravisZro
2024-05-23 22:58:46 -04:00
parent a3a3797067
commit 1618040db5
100 changed files with 864 additions and 864 deletions

View File

@@ -143,7 +143,7 @@ void con_raw_Defer(void) {
default:
if (Con_raw_inp_pos < (Con_raw_cols - 2)) {
// Add the character to the text buffer.
unsigned char str[2];
uint8_t str[2];
str[0] = ddio_KeyToAscii(keypressed);
str[1] = 0;
if (str[0] != 255) {