From 99d86deb1f0c3ccf09290cbb864309b55775d803 Mon Sep 17 00:00:00 2001 From: N00byKing Date: Mon, 26 Mar 2018 21:43:39 +0200 Subject: [PATCH] cpu_detect.cpp: Change comment from citra to yuzu --- src/common/x64/cpu_detect.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/x64/cpu_detect.cpp b/src/common/x64/cpu_detect.cpp index 62f17fbb59..2dfcd39c80 100644 --- a/src/common/x64/cpu_detect.cpp +++ b/src/common/x64/cpu_detect.cpp @@ -54,7 +54,7 @@ static CPUCaps Detect() { caps.num_cores = std::thread::hardware_concurrency(); // Assumes the CPU supports the CPUID instruction. Those that don't would likely not support - // Citra at all anyway + // yuzu at all anyway int cpu_id[4]; memset(caps.brand_string, 0, sizeof(caps.brand_string));