diff options
author | Phlosioneer <mattmdrr2@gmail.com> | 2019-02-22 01:40:11 -0500 |
---|---|---|
committer | Phlosioneer <mattmdrr2@gmail.com> | 2019-02-22 01:40:11 -0500 |
commit | 44e92ce2596981c8d42b70922e5ae84d6b321ab1 (patch) | |
tree | cdbe34972f5cbce52f0446243c0262c0b7bf11a0 /src/cable_club.c | |
parent | 199863f21f41b3a51d9a6302ca7c3c2864ee1c17 (diff) |
Give window drawing functions better names
Diffstat (limited to 'src/cable_club.c')
-rw-r--r-- | src/cable_club.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cable_club.c b/src/cable_club.c index f8137fd8f..dfef39975 100644 --- a/src/cable_club.c +++ b/src/cable_club.c @@ -93,8 +93,8 @@ static void sub_80B23B0(u16 windowId, u32 value) static void sub_80B241C(u16 windowId) { // Following this call with a copy-to-vram with mode 3 is identical to - // calling ClearWindowAndBorder(windowId, TRUE). - ClearWindowAndBorder(windowId, FALSE); + // calling ClearStdWindowAndFrame(windowId, TRUE). + ClearStdWindowAndFrame(windowId, FALSE); CopyWindowToVram(windowId, 3); } |