From 8b1c8f7abec0c9a6594cf99dd666bcfa455999e9 Mon Sep 17 00:00:00 2001 From: Ramen2X <64166386+Ramen2X@users.noreply.github.com> Date: Mon, 16 Oct 2023 18:46:45 -0400 Subject: [PATCH] use MxResult return type in MxCore::Tickle() --- LEGO1/mxcore.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LEGO1/mxcore.cpp b/LEGO1/mxcore.cpp index ab73e242..e39a412f 100644 --- a/LEGO1/mxcore.cpp +++ b/LEGO1/mxcore.cpp @@ -24,5 +24,5 @@ MxLong MxCore::Notify(MxParam &p) // OFFSET: LEGO1 0x10001f70 MxResult MxCore::Tickle() { - return 0; -} \ No newline at end of file + return SUCCESS; +}