[Scummvm-git-logs] scummvm master -> 28cf4aae6b35c36a6c120a8227315262ee3b3e4e
sev-
noreply at scummvm.org
Fri Jun 14 12:37:11 UTC 2024
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
28cf4aae6b GUI: Disable calls to IntegrityDialog without libcurl
Commit: 28cf4aae6b35c36a6c120a8227315262ee3b3e4e
https://github.com/scummvm/scummvm/commit/28cf4aae6b35c36a6c120a8227315262ee3b3e4e
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2024-06-14T14:37:02+02:00
Commit Message:
GUI: Disable calls to IntegrityDialog without libcurl
Changed paths:
gui/editgamedialog.cpp
gui/module.mk
diff --git a/gui/editgamedialog.cpp b/gui/editgamedialog.cpp
index 01314f47560..5be989b6c5a 100644
--- a/gui/editgamedialog.cpp
+++ b/gui/editgamedialog.cpp
@@ -622,11 +622,13 @@ void EditGameDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 dat
_savePathWidget->setLabel(Common::Path());
break;
+#ifdef USE_LIBCURL
case kCmdCheckIntegrity: {
IntegrityDialog wizard("http://gamesdb.sev.zone/endpoints/validate.php", _domain);
wizard.runModal();
break;
}
+#endif
case kOKCmd:
{
diff --git a/gui/module.mk b/gui/module.mk
index a60da0ae136..a360a014724 100644
--- a/gui/module.mk
+++ b/gui/module.mk
@@ -53,11 +53,11 @@ ifdef USE_CLOUD
MODULE_OBJS += \
cloudconnectionwizard.o \
downloaddialog.o \
- downloadpacksdialog.o \
remotebrowser.o
endif
MODULE_OBJS += \
+ downloadpacksdialog.o \
integrity-dialog.o
endif
More information about the Scummvm-git-logs
mailing list