mirror of
https://github.com/kevinbentley/Descent3.git
synced 2026-04-04 20:00:04 -04:00
Replace "unsigned int" with "uint32_t"
This commit is contained in:
@@ -166,7 +166,7 @@ bool oeLnxAppDatabase::read(const char *label, void *entry, int wordsize) {
|
||||
*((unsigned short *)entry) = (unsigned short)data;
|
||||
break;
|
||||
case 4:
|
||||
*((unsigned int *)entry) = (unsigned int)data;
|
||||
*((uint32_t *)entry) = (uint32_t)data;
|
||||
break;
|
||||
default:
|
||||
mprintf((0, "Unable to read key %s, unsupported size", label));
|
||||
|
||||
Reference in New Issue
Block a user