1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-18 09:52:44 +01:00

Codefix: Comment style. (#14064)

This commit is contained in:
frosch
2025-04-21 17:25:09 +02:00
committed by GitHub
parent 5b2754fdee
commit 2a62eea005
29 changed files with 64 additions and 62 deletions

View File

@@ -188,7 +188,7 @@ static std::optional<std::string> VolumeMarkFunc(int, int mark, int value)
/* Label only every other mark. */
if (mark % 2 != 0) return std::string{};
// 0-127 does not map nicely to 0-100. Dividing first gives us nice round numbers.
/* 0-127 does not map nicely to 0-100. Dividing first gives us nice round numbers. */
return GetString(STR_GAME_OPTIONS_VOLUME_MARK, value / 31 * 25);
}