[Scummvm-git-logs] scummvm master -> 6203267f0b946f84af48b3ae776e81af0590c0a9
dreammaster
noreply at scummvm.org
Tue May 21 03:38: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:
6203267f0b BAGEL: Fix rendering of checkboxes in sraf computer
Commit: 6203267f0b946f84af48b3ae776e81af0590c0a9
https://github.com/scummvm/scummvm/commit/6203267f0b946f84af48b3ae776e81af0590c0a9
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2024-05-20T20:37:44-07:00
Commit Message:
BAGEL: Fix rendering of checkboxes in sraf computer
Changed paths:
engines/bagel/spacebar/sraf_computer.cpp
diff --git a/engines/bagel/spacebar/sraf_computer.cpp b/engines/bagel/spacebar/sraf_computer.cpp
index 8e6736a16e9..fc692410e81 100644
--- a/engines/bagel/spacebar/sraf_computer.cpp
+++ b/engines/bagel/spacebar/sraf_computer.cpp
@@ -1463,7 +1463,7 @@ CBofString &SrafComputer::buildBidString(int index) {
alignAtColumn(gBidStr, szRightCol, kFirstMineralColumn + j * kMineralColWidth);
}
- Common::strcpy_s(szRightCol, (g_stBuyerBids[index]._bAccept ? "[*]" : "[ ]"));
+ Common::strcpy_s(szRightCol, (g_stBuyerBids[index]._bAccept ? "[X]" : "[ ]"));
alignAtColumn(gBidStr, szRightCol, kFirstMineralColumn + NUM_MINERALS * kMineralColWidth + 2);
@@ -1797,7 +1797,7 @@ void SrafComputer::recalcDispatchList(int mExpansionFlag) {
Common::strcpy_s(szRightCol, (g_staffers[i - nSkipped]._bAvailable ? "YES" : "NO "));
alignAtColumn(sStr, szRightCol, kTeamAvailableColumn);
- Common::strcpy_s(szRightCol, (g_staffers[i - nSkipped]._bOnCurrentTeam ? "[*]" : "[ ]"));
+ Common::strcpy_s(szRightCol, (g_staffers[i - nSkipped]._bOnCurrentTeam ? "[X]" : "[ ]"));
alignAtColumn(sStr, szRightCol, kTeamIncludeColumn - 1);
}
More information about the Scummvm-git-logs
mailing list