From a50244dc16085a49f4949cf75f6220320480cebd Mon Sep 17 00:00:00 2001 From: erorcun Date: Mon, 21 Dec 2020 23:26:32 +0300 Subject: signed/unsigned fixes, and some other fixes --- src/text/Text.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/text') diff --git a/src/text/Text.cpp b/src/text/Text.cpp index e23369fb..5f7a07cc 100644 --- a/src/text/Text.cpp +++ b/src/text/Text.cpp @@ -318,7 +318,7 @@ CKeyArray::Load(size_t length, int file, size_t* offset) entries = new CKeyEntry[numEntries]; rawbytes = (char*)entries; -#if DUMB +#if THIS_IS_STUPID for (uint32 i = 0; i < length; i++) { CFileMgr::Read(file, &rawbytes[i], 1); (*offset)++; @@ -412,7 +412,7 @@ CData::Load(size_t length, int file, size_t * offset) chars = new wchar[numChars]; rawbytes = (char*)chars; -#if DUMB +#if THIS_IS_STUPID for(uint32 i = 0; i < length; i++){ CFileMgr::Read(file, &rawbytes[i], 1); (*offset)++; @@ -434,7 +434,7 @@ CData::Unload(void) void CMissionTextOffsets::Load(size_t table_size, int file, size_t *offset, int) { -#if DUMB +#if THIS_IS_STUPID size_t num_of_entries = table_size / sizeof(CMissionTextOffsets::Entry); for (size_t mi = 0; mi < num_of_entries; mi++) { for (uint32 i = 0; i < sizeof(data[mi].szMissionName); i++) { -- cgit v1.2.3