From 02df7ef9ee08b8e12023c8596c475b83a9f481fc Mon Sep 17 00:00:00 2001 From: theofficialgman <28281419+theofficialgman@users.noreply.github.com> Date: Tue, 25 Aug 2026 21:14:37 -0400 Subject: [PATCH] correct type-alias difference on linux --- runtime/src/hle/storage/dvd.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runtime/src/hle/storage/dvd.cpp b/runtime/src/hle/storage/dvd.cpp index 03c815c..1acf239 100644 --- a/runtime/src/hle/storage/dvd.cpp +++ b/runtime/src/hle/storage/dvd.cpp @@ -635,7 +635,8 @@ static void BuildAndPublishRuntimeFst() { for (const DVDFileEntry& entry : g_fileEntries) { if (entry.discOffsetWords != 0) { nextFreeBytes = std::max( - nextFreeBytes, static_cast(entry.discOffsetWords) * 4ull + entry.size); + nextFreeBytes, static_cast(entry.discOffsetWords) * UINT64_C(4) + + static_cast(entry.size)); } } for (DVDFileEntry& entry : g_fileEntries) {