Fix typo--missing semicolon in src/Cafe/CafeSystem.cpp introduced in new #elif BOOST_OS_BSD section

This commit is contained in:
Kevin Reinholz 2025-07-04 09:43:55 -07:00
parent 987b28e07a
commit 80be462129

View File

@ -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)