diff options
| author | cadmic <cadmic24@gmail.com> | 2024-01-12 07:38:13 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-12 10:38:13 -0500 |
| commit | 324db1d57830dcb2a45720445ac5d7904a6f5c6a (patch) | |
| tree | 082de71ba2d4b8457be64e79bd2c37de99bd0ae2 /src/code/shrink_window.c | |
| parent | 6eb3bf401cf768a81788e2aa90cb2cafbcd8d763 (diff) | |
Replace most osSyncPrintf calls with PRINTF macro (#1598)
* Replace most osSyncPrintf calls with PRINTF macro
* DEBUG -> OOT_DEBUG
Diffstat (limited to 'src/code/shrink_window.c')
| -rw-r--r-- | src/code/shrink_window.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/code/shrink_window.c b/src/code/shrink_window.c index 2be49a018..71e0e14de 100644 --- a/src/code/shrink_window.c +++ b/src/code/shrink_window.c @@ -13,7 +13,7 @@ s32 sLetterboxSize = 0; void Letterbox_SetSizeTarget(s32 target) { if (R_HREG_MODE == HREG_MODE_LETTERBOX && R_LETTERBOX_ENABLE_LOGS == 1) { - osSyncPrintf("shrink_window_setval(%d)\n", target); + PRINTF("shrink_window_setval(%d)\n", target); } sLetterboxSizeTarget = target; @@ -25,7 +25,7 @@ u32 Letterbox_GetSizeTarget(void) { void Letterbox_SetSize(s32 size) { if (R_HREG_MODE == HREG_MODE_LETTERBOX && R_LETTERBOX_ENABLE_LOGS == 1) { - osSyncPrintf("shrink_window_setnowval(%d)\n", size); + PRINTF("shrink_window_setnowval(%d)\n", size); } sLetterboxSize = size; @@ -37,7 +37,7 @@ u32 Letterbox_GetSize(void) { void Letterbox_Init(void) { if (R_HREG_MODE == HREG_MODE_LETTERBOX && R_LETTERBOX_ENABLE_LOGS == 1) { - osSyncPrintf("shrink_window_init()\n"); + PRINTF("shrink_window_init()\n"); } sLetterboxState = LETTERBOX_STATE_IDLE; @@ -47,7 +47,7 @@ void Letterbox_Init(void) { void Letterbox_Destroy(void) { if (R_HREG_MODE == HREG_MODE_LETTERBOX && R_LETTERBOX_ENABLE_LOGS == 1) { - osSyncPrintf("shrink_window_cleanup()\n"); + PRINTF("shrink_window_cleanup()\n"); } sLetterboxSize = 0; |
