[Scummvm-git-logs] scummvm master -> 9428447537629fa3392cea9440eb59daef416e75
tsoliman
noreply at scummvm.org
Fri Aug 9 07:37:00 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:
9428447537 GUI: Fix opening Global Options when cloud is disabled
Commit: 9428447537629fa3392cea9440eb59daef416e75
https://github.com/scummvm/scummvm/commit/9428447537629fa3392cea9440eb59daef416e75
Author: Tarek Soliman (tsoliman at scummvm.org)
Date: 2024-08-09T02:34:04-05:00
Commit Message:
GUI: Fix opening Global Options when cloud is disabled
Regression caused by 0beb356156a587159ed173be51b44fdf359d1dc8
Changed paths:
gui/options.cpp
diff --git a/gui/options.cpp b/gui/options.cpp
index d1c33f373d0..3f0d8d37ecb 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -2432,9 +2432,11 @@ void GlobalOptionsDialog::build() {
_rendererPopUp->setSelectedTag(mode);
#ifdef USE_SDL_NET
+#ifdef USE_CLOUD
Common::Path rootPath(ConfMan.getPath("rootpath", "cloud"));
_rootPath->setLabel(rootPath);
-#endif
+#endif // USE_CLOUD
+#endif // USE_SDL_NET
}
void GlobalOptionsDialog::clean() {
More information about the Scummvm-git-logs
mailing list