diff --git a/cockatrice/src/client/network/update/client/release_channel.cpp b/cockatrice/src/client/network/update/client/release_channel.cpp index 42ded9076..5ed276765 100644 --- a/cockatrice/src/client/network/update/client/release_channel.cpp +++ b/cockatrice/src/client/network/update/client/release_channel.cpp @@ -63,10 +63,6 @@ std::optional ReleaseChannel::getTargetVersionForCurrentOS(const QString &f const QRegularExpression ®ex = isIntel ? macIntelRegex : macArmRegex; #elif defined(Q_OS_WIN) -#if Q_PROCESSOR_WORDSIZE != 8 // non 64-bit host - Q_UNUSED(fileName); - return std::nullopt; -#endif static const QRegularExpression regex(R"(Win(?:dows)?(\d+)\.[^.]+$)", QRegularExpression::CaseInsensitiveOption); #else // if the OS doesn't fit one of the above #defines, then it will never match