summaryrefslogtreecommitdiff
path: root/src/code/printutils.c
diff options
context:
space:
mode:
authorzelda2774 <69368340+zelda2774@users.noreply.github.com>2021-08-30 02:08:41 +0200
committerGitHub <noreply@github.com>2021-08-29 20:08:41 -0400
commita75c70358cba32c6ffbdb820f700a994c3a715fd (patch)
treed8ccec3fec07cb60233608b8cef575b253a925b3 /src/code/printutils.c
parent28e72bb486e271db133e61d7548f9009ed8f1d3a (diff)
Match func_800EEA50 + some surrounding doc (#916)
* Match func_800EEA50 * Document some audio debug stuff * more doc * more doc * formatting * Fix enums, and some more bits of doc * review * LIM -> MAX * missed review suggestion... * more review * ganon comments * more review * 🐍☠️ * more review * Update functions.h * quotes * review Co-authored-by: zelda2774 <zelda2774@invalid>
Diffstat (limited to 'src/code/printutils.c')
-rw-r--r--src/code/printutils.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/code/printutils.c b/src/code/printutils.c
index a965e18a8..1df6a4bfc 100644
--- a/src/code/printutils.c
+++ b/src/code/printutils.c
@@ -1,12 +1,12 @@
#include "global.h"
-void PrintUtils_VPrintf(PrintCallback* pfn, const char* fmt, va_list args) {
- _Printf(*pfn, pfn, fmt, args);
+s32 PrintUtils_VPrintf(PrintCallback* pfn, const char* fmt, va_list args) {
+ return _Printf(*pfn, pfn, fmt, args);
}
-void PrintUtils_Printf(PrintCallback* pfn, const char* fmt, ...) {
+s32 PrintUtils_Printf(PrintCallback* pfn, const char* fmt, ...) {
va_list args;
va_start(args, fmt);
- PrintUtils_VPrintf(pfn, fmt, args);
+ return PrintUtils_VPrintf(pfn, fmt, args);
}