mirror of
https://github.com/kevinbentley/Descent3.git
synced 2026-04-10 11:00:05 -04:00
Replace "ubyte" with "uint8_t"
This commit is contained in:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user