mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-17 10:52:46 +00:00
Convert custom HeadSpin integer types to standard types from stdint.h
This commit is contained in:
@ -80,7 +80,7 @@ private:
|
||||
|
||||
static plAgeLoader* fInstance;
|
||||
|
||||
UInt32 fFlags;
|
||||
uint32_t fFlags;
|
||||
plStringVec fPendingAgeFniFiles; // list of age .fni files to be parsed
|
||||
plStringVec fPendingAgeCsvFiles; // list of age .csv files to be parsed
|
||||
plKeyVec fPendingPageIns; // keys of rooms which are currently being paged in.
|
||||
|
@ -66,7 +66,7 @@ public:
|
||||
fIsZipped = wcscmp(plFileUtils::GetFileExt(reqFile), L"gz") == 0;
|
||||
}
|
||||
|
||||
UInt32 Write(UInt32 count, const void* buf)
|
||||
uint32_t Write(uint32_t count, const void* buf)
|
||||
{
|
||||
fProgress->Increment((hsScalar)count);
|
||||
if (fIsZipped)
|
||||
@ -116,7 +116,7 @@ static void ManifestDownloaded(
|
||||
void* param,
|
||||
const wchar_t group[],
|
||||
const NetCliFileManifestEntry manifest[],
|
||||
UInt32 entryCount)
|
||||
uint32_t entryCount)
|
||||
{
|
||||
plResPatcher* patcher = (plResPatcher*)param;
|
||||
char* name = hsWStringToString(group);
|
||||
@ -129,7 +129,7 @@ static void ManifestDownloaded(
|
||||
return;
|
||||
}
|
||||
|
||||
for (UInt32 i = 0; i < entryCount; ++i)
|
||||
for (uint32_t i = 0; i < entryCount; ++i)
|
||||
{
|
||||
const NetCliFileManifestEntry mfs = manifest[i];
|
||||
char* fileName = hsWStringToString(mfs.clientName);
|
||||
@ -280,7 +280,7 @@ void plResPatcher::Start()
|
||||
|
||||
void PatcherLog(PatcherLogType type, const char* format, ...)
|
||||
{
|
||||
UInt32 color = 0;
|
||||
uint32_t color = 0;
|
||||
switch (type)
|
||||
{
|
||||
case kHeader: color = plStatusLog::kWhite; break;
|
||||
|
Reference in New Issue
Block a user