Label 3 board translation units

com.c, view.c (formerly overhead.c), and shop.c are now labeled.
This commit is contained in:
gamemasterplc 2024-01-16 14:27:48 -06:00
parent f25b020de5
commit 680038c344
8 changed files with 113 additions and 109 deletions

View file

@ -281,14 +281,14 @@ void BoardWinKill(void) {
}
}
void BoardWinSetAttr(s32 attr) {
void BoardWinAttrSet(s32 attr) {
winAttr |= attr;
if (windowID >= 0) {
HuWinAttrSet(windowID, winAttr);
}
}
void BoardWinResetAttr(s32 attr) {
void BoardWinAttrReset(s32 attr) {
winAttr &= ~attr;
if (windowID >= 0) {
HuWinAttrSet(windowID, winAttr);