[Scummvm-git-logs] scummvm master -> e8f8e9bdf17e4dce234e961017b9c8847b0e0b73

digitall 547637+digitall at users.noreply.github.com
Thu Jun 18 20:06:54 UTC 2020


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:
e8f8e9bdf1 TESTBED: Remove use of final as a variable name


Commit: e8f8e9bdf17e4dce234e961017b9c8847b0e0b73
    https://github.com/scummvm/scummvm/commit/e8f8e9bdf17e4dce234e961017b9c8847b0e0b73
Author: D G Turner (digitall at scummvm.org)
Date: 2020-06-18T21:04:45+01:00

Commit Message:
TESTBED: Remove use of final as a variable name

Changed paths:
    engines/testbed/detection.cpp


diff --git a/engines/testbed/detection.cpp b/engines/testbed/detection.cpp
index 94feb6aea1..1179a6b9d7 100644
--- a/engines/testbed/detection.cpp
+++ b/engines/testbed/detection.cpp
@@ -74,8 +74,8 @@ public:
 		Common::AchievementsInfo result;
 		result.platform = Common::UNK_ACHIEVEMENTS;
 		result.appId = "testbed";
-		Common::AchievementDescription final = {"EVERYTHINGWORKS", true, "Everything works!", "Completed all available testsuites"};
-		result.descriptions.push_back(final);
+		Common::AchievementDescription testSuiteFinalAchievement = {"EVERYTHINGWORKS", true, "Everything works!", "Completed all available testsuites"};
+		result.descriptions.push_back(testSuiteFinalAchievement);
 
 		Common::Array<Testbed::Testsuite *> testsuiteList;
 		Testbed::TestbedEngine::pushTestsuites(testsuiteList);




More information about the Scummvm-git-logs mailing list