From 80be4621297c6083d4d0455904f6b677fd401522 Mon Sep 17 00:00:00 2001 From: Kevin Reinholz Date: Fri, 4 Jul 2025 09:43:55 -0700 Subject: [PATCH] Fix typo--missing semicolon in src/Cafe/CafeSystem.cpp introduced in new #elif BOOST_OS_BSD section --- src/Cafe/CafeSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Cafe/CafeSystem.cpp b/src/Cafe/CafeSystem.cpp index c5fe8b93..42efb264 100644 --- a/src/Cafe/CafeSystem.cpp +++ b/src/Cafe/CafeSystem.cpp @@ -479,7 +479,7 @@ namespace CafeSystem if (result == 0) cemuLog_log(LogType::Force, "RAM: {}MB", (totalRam / 1024LL / 1024LL)); #elif BOOST_OS_BSD - int64_t totalRam + int64_t totalRam; size_t size = sizeof(totalRam); int result = sysctlbyname("hw.physmem", &totalRam, &size, NULL, 0); if (result == 0)