diff --git a/README.md b/README.md index a369e5ff7..39f309e88 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 3111. +This is the source code for early-access 3112. ## Legal Notice diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index bffd1c791..42d252cb0 100755 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -2820,7 +2820,7 @@ void GMainWindow::OnMenuReportCompatibility() { const bool has_fma = caps.fma || caps.fma4; const auto processor_count = std::thread::hardware_concurrency(); const bool has_4threads = processor_count == 0 || processor_count >= 4; - const bool has_8gb_ram = Common::GetMemInfo().TotalPhysicalMemory >= 8000000000; + const bool has_8gb_ram = Common::GetMemInfo().TotalPhysicalMemory >= 8_GiB; const bool has_broken_vulkan = UISettings::values.has_broken_vulkan; if (!has_fma || !has_4threads || !has_8gb_ram || has_broken_vulkan) {