Browse Source
yuzu/main: Change to 8_GiB instead of magic number
Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com>
pull/15/merge
Tobias
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/yuzu/main.cpp
|
|
|
@ -2807,7 +2807,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) { |
|
|
|
|