Replace "ubyte" with "uint8_t"

This commit is contained in:
GravisZro
2024-05-23 23:07:26 -04:00
parent 9d3e361a35
commit 26b7776f43
394 changed files with 2888 additions and 2888 deletions

View File

@@ -444,7 +444,7 @@ void DMFCInputCommand_HudCallsigns(const char *input_string) {
return;
}
ubyte level = HUD_CALLSIGN_LEVEL_NONE;
uint8_t level = HUD_CALLSIGN_LEVEL_NONE;
if (!stricmp(s, DTXT_OSM_FULL))
level = HUD_CALLSIGN_LEVEL_FULL;
else if (!stricmp(s, DTXT_IC_TEAM))
@@ -473,7 +473,7 @@ void DMFCInputCommand_ServerHudCallsigns(const char *input_string) {
return;
}
ubyte level = HUD_CALLSIGN_LEVEL_NONE;
uint8_t level = HUD_CALLSIGN_LEVEL_NONE;
if (!stricmp(s, DTXT_OSM_FULL))
level = HUD_CALLSIGN_LEVEL_FULL;
else if (!stricmp(s, DTXT_IC_TEAM))
@@ -807,7 +807,7 @@ void DMFCInputCommand_KillMsgFilter(const char *input_string) {
return;
}
ubyte level = DM_FILTER_FULL;
uint8_t level = DM_FILTER_FULL;
if (!stricmp(s, DTXT_PLAIN_NONE))
level = DM_FILTER_NONE;
else if (!stricmp(s, DTXT_OSM_SIMPLE))