Core: Replace 'Mac' with 'system' in page size error message

This commit is contained in:
TheLastRar 2024-08-01 14:39:11 +01:00 committed by Ty
parent 31026e420d
commit 6c44e985b1
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ bool VMManager::PerformEarlyHardwareChecks(const char** error)
const size_t runtime_host_page_size = HostSys::GetRuntimePageSize();
if (__pagesize != runtime_host_page_size)
{
*error = "Page size mismatch. This build cannot run on your Mac.\n\n" COMMON_DOWNLOAD_MESSAGE;
*error = "Page size mismatch. This build cannot run on your system.\n\n" COMMON_DOWNLOAD_MESSAGE;
return false;
}
#endif