mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-12-19 17:37:42 -05:00
Replace "unsigned char" with "uint8_t"
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user