Always return false for CheckNewVersion() if libcurl is not used

This commit is contained in:
smallmodel 2025-03-11 23:33:17 +01:00
parent 0b590ab147
commit 4fe11b5ea9
No known key found for this signature in database
GPG key ID: 9F2D623CEDF08512

View file

@ -293,6 +293,16 @@ void UpdateChecker::RequestThread()
#else
bool UpdateChecker::CheckNewVersion() const
{
return false;
}
bool UpdateChecker::CheckNewVersion(int& major, int& minor, int& patch) const
{
return false;
}
void Sys_UpdateChecker_Init() {}
void Sys_UpdateChecker_Process() {}