mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-13 15:40:57 +00:00
BAGEL: Fix rendering of checkboxes in sraf computer
This commit is contained in:
parent
6e84d23ea8
commit
6203267f0b
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user