PINE: Don't test for a valid VM when checking emulator version

This commit is contained in:
chaoticgd
2026-06-01 23:55:19 +02:00
committed by lightningterror
parent d7002433a2
commit b3834427bc
-2
View File
@@ -629,8 +629,6 @@ PINEServer::IPCBuffer PINEServer::ParseCommand(std::span<u8> buf, std::vector<u8
}
case MsgVersion:
{
if (!VMManager::HasValidVM())
goto error;
u32 size = strlen(BuildVersion::GitRev) + 7;
if (!SafetyChecks(buf_cnt, 0, ret_cnt, size + 4, buf_size)) [[unlikely]]
goto error;