From 0bec4f557a96e1a40437cf5af20cc78a5eec8a63 Mon Sep 17 00:00:00 2001 From: Ash Wolf Date: Wed, 11 Jan 2023 22:29:53 +0000 Subject: getting closer --- command_line/CmdLine/Src/MacEmul/LowMem.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'command_line/CmdLine/Src/MacEmul/LowMem.c') diff --git a/command_line/CmdLine/Src/MacEmul/LowMem.c b/command_line/CmdLine/Src/MacEmul/LowMem.c index cd31194..6b32e2c 100644 --- a/command_line/CmdLine/Src/MacEmul/LowMem.c +++ b/command_line/CmdLine/Src/MacEmul/LowMem.c @@ -2,15 +2,15 @@ static OSErr memErr; -UInt32 LMGetTicks() { +UInt32 LMGetTicks(void) { return (OS_GetMilliseconds() * 60) / 1000; } -UInt32 LMGetTime() { +UInt32 LMGetTime(void) { return OS_GetMilliseconds() / 1000; } -OSErr LMGetMemErr() { +OSErr LMGetMemErr(void) { return memErr; } -- cgit v1.2.3