[Scummvm-git-logs] scummvm master -> 0cfc16351500bc9d3f33f5bd14ee4bb157813511
digitall
noreply at scummvm.org
Tue Mar 28 22:27:51 UTC 2023
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:
0cfc163515 GUI: Fix Signed vs. Unsigned Comparison GCC Compiler Warning
Commit: 0cfc16351500bc9d3f33f5bd14ee4bb157813511
https://github.com/scummvm/scummvm/commit/0cfc16351500bc9d3f33f5bd14ee4bb157813511
Author: D G Turner (digitall at scummvm.org)
Date: 2023-03-28T23:27:10+01:00
Commit Message:
GUI: Fix Signed vs. Unsigned Comparison GCC Compiler Warning
Changed paths:
gui/options.cpp
diff --git a/gui/options.cpp b/gui/options.cpp
index 83d63b57f05..3c8e1b52855 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -2943,7 +2943,7 @@ void GlobalOptionsDialog::apply() {
else
_autosavePeriodPopUp->setSelected(0);
- if (gDebugLevel != _debugLevelPopUp->getSelectedTag()) {
+ if (gDebugLevel != (int)_debugLevelPopUp->getSelectedTag()) {
gDebugLevel = _debugLevelPopUp->getSelectedTag();
warning("Debug level set to %d", gDebugLevel);
More information about the Scummvm-git-logs
mailing list