1
0
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:
2012-01-19 21:19:26 -05:00
parent a0d54e2644
commit 5027b5a4ac
1301 changed files with 14497 additions and 14532 deletions

View File

@ -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.

View File

@ -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;