mirror of
https://github.com/patchzyy/wiicompiled
synced 2026-09-10 17:16:47 -04:00
correct type-alias difference on linux
This commit is contained in:
@@ -635,7 +635,8 @@ static void BuildAndPublishRuntimeFst() {
|
||||
for (const DVDFileEntry& entry : g_fileEntries) {
|
||||
if (entry.discOffsetWords != 0) {
|
||||
nextFreeBytes = std::max(
|
||||
nextFreeBytes, static_cast<uint64_t>(entry.discOffsetWords) * 4ull + entry.size);
|
||||
nextFreeBytes, static_cast<uint64_t>(entry.discOffsetWords) * UINT64_C(4) +
|
||||
static_cast<uint64_t>(entry.size));
|
||||
}
|
||||
}
|
||||
for (DVDFileEntry& entry : g_fileEntries) {
|
||||
|
||||
Reference in New Issue
Block a user