mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-11 11:10:04 +01:00
Avoid crash on undefined arch
This commit is contained in:
parent
44d97ffd2f
commit
f78e4e5061
|
|
@ -896,7 +896,7 @@ const char * fallback_cpu_detection()
|
|||
std::string result = aarch64::get_cpu_name();
|
||||
if (result.empty())
|
||||
{
|
||||
return "cortex-a32";
|
||||
return "cortex-a34";
|
||||
}
|
||||
|
||||
std::transform(result.begin(), result.end(), result.begin(), ::tolower);
|
||||
|
|
|
|||
Loading…
Reference in a new issue