mirror of
https://github.com/kevinbentley/Descent3.git
synced 2026-04-09 08:00:04 -04:00
Replace "unsigned int" with "uint32_t"
This commit is contained in:
@@ -156,7 +156,7 @@ void CZip::hb_input_counts(BITFILE *input, tH0Node *nodes) {
|
||||
if ((c = VFgetc(input->file)) == EOF) {
|
||||
// fatal_error( "Error reading byte counts\n" );
|
||||
} else
|
||||
nodes[i].count = (unsigned int)c;
|
||||
nodes[i].count = (uint32_t)c;
|
||||
if ((first = VFgetc(input->file)) == EOF) {
|
||||
// fatal_error( "Error reading byte counts\n" );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user