From 1368a5f8dfeae14b170d518297e148d9a33b2121 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Thu, 21 Sep 2023 06:27:24 -0400 Subject: [PATCH] Fix implementations --- LEGO1/act2brick.cpp | 2 +- LEGO1/gasstation.cpp | 2 +- LEGO1/infocenter.cpp | 2 +- LEGO1/legoanimationmanager.cpp | 2 +- LEGO1/legocarbuild.cpp | 2 +- LEGO1/legocontrolmanager.cpp | 2 +- LEGO1/legoinputmanager.cpp | 2 +- LEGO1/legopathcontroller.cpp | 2 +- LEGO1/legoplantmanager.cpp | 2 +- LEGO1/legosoundmanager.cpp | 2 +- LEGO1/mxcore.cpp | 2 +- LEGO1/mxdiskstreamcontroller.cpp | 2 +- LEGO1/mxmediapresenter.cpp | 2 +- LEGO1/mxpresenter.cpp | 2 +- LEGO1/mxtransitionmanager.cpp | 2 +- LEGO1/mxvideomanager.cpp | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/LEGO1/act2brick.cpp b/LEGO1/act2brick.cpp index 84c8bbb3..dde79d0b 100644 --- a/LEGO1/act2brick.cpp +++ b/LEGO1/act2brick.cpp @@ -21,7 +21,7 @@ MxLong Act2Brick::Notify(MxParam &p) } // OFFSET: LEGO1 0x1007a7f0 STUB -MxLong Act2Brick::Tickle() +MxResult Act2Brick::Tickle() { // TODO diff --git a/LEGO1/gasstation.cpp b/LEGO1/gasstation.cpp index 33590dc9..eb178ef0 100644 --- a/LEGO1/gasstation.cpp +++ b/LEGO1/gasstation.cpp @@ -21,7 +21,7 @@ MxLong GasStation::Notify(MxParam &p) } // OFFSET: LEGO1 0x10005c90 STUB -MxLong GasStation::Tickle() +MxResult GasStation::Tickle() { // TODO diff --git a/LEGO1/infocenter.cpp b/LEGO1/infocenter.cpp index b9ea67c6..eb7e65fc 100644 --- a/LEGO1/infocenter.cpp +++ b/LEGO1/infocenter.cpp @@ -21,7 +21,7 @@ MxLong Infocenter::Notify(MxParam &p) } // OFFSET: LEGO1 0x10070af0 STUB -MxLong Infocenter::Tickle() +MxResult Infocenter::Tickle() { // TODO diff --git a/LEGO1/legoanimationmanager.cpp b/LEGO1/legoanimationmanager.cpp index d396d431..20e0a0e3 100644 --- a/LEGO1/legoanimationmanager.cpp +++ b/LEGO1/legoanimationmanager.cpp @@ -23,7 +23,7 @@ MxLong LegoAnimationManager::Notify(MxParam &p) } // OFFSET: LEGO1 0x10061cc0 STUB -MxLong LegoAnimationManager::Tickle() +MxResult LegoAnimationManager::Tickle() { // TODO diff --git a/LEGO1/legocarbuild.cpp b/LEGO1/legocarbuild.cpp index c9254c37..e204529b 100644 --- a/LEGO1/legocarbuild.cpp +++ b/LEGO1/legocarbuild.cpp @@ -21,7 +21,7 @@ MxLong LegoCarBuild::Notify(MxParam &p) } // OFFSET: LEGO1 0x100238b0 STUB -MxLong LegoCarBuild::Tickle() +MxResult LegoCarBuild::Tickle() { // TODO diff --git a/LEGO1/legocontrolmanager.cpp b/LEGO1/legocontrolmanager.cpp index 16733e13..91ff8c39 100644 --- a/LEGO1/legocontrolmanager.cpp +++ b/LEGO1/legocontrolmanager.cpp @@ -13,7 +13,7 @@ LegoControlManager::~LegoControlManager() } // OFFSET: LEGO1 0x10029600 STUB -MxLong LegoControlManager::Tickle() +MxResult LegoControlManager::Tickle() { // TODO diff --git a/LEGO1/legoinputmanager.cpp b/LEGO1/legoinputmanager.cpp index 90be0c2c..7c6489ee 100644 --- a/LEGO1/legoinputmanager.cpp +++ b/LEGO1/legoinputmanager.cpp @@ -35,7 +35,7 @@ void LegoInputManager::UnRegister(MxCore *) } // OFFSET: LEGO1 0x1005b8b0 STUB -MxLong LegoInputManager::Tickle() +MxResult LegoInputManager::Tickle() { // TODO diff --git a/LEGO1/legopathcontroller.cpp b/LEGO1/legopathcontroller.cpp index 0cebbc0f..f8b64109 100644 --- a/LEGO1/legopathcontroller.cpp +++ b/LEGO1/legopathcontroller.cpp @@ -13,7 +13,7 @@ LegoPathController::~LegoPathController() } // OFFSET: LEGO1 0x10045c10 STUB -MxLong LegoPathController::Tickle() +MxResult LegoPathController::Tickle() { // TODO return 0; diff --git a/LEGO1/legoplantmanager.cpp b/LEGO1/legoplantmanager.cpp index eee83726..515d330d 100644 --- a/LEGO1/legoplantmanager.cpp +++ b/LEGO1/legoplantmanager.cpp @@ -13,7 +13,7 @@ LegoPlantManager::~LegoPlantManager() } // OFFSET: LEGO1 0x10026e00 STUB -MxLong LegoPlantManager::Tickle() +MxResult LegoPlantManager::Tickle() { // TODO diff --git a/LEGO1/legosoundmanager.cpp b/LEGO1/legosoundmanager.cpp index e56747f6..01f8fee5 100644 --- a/LEGO1/legosoundmanager.cpp +++ b/LEGO1/legosoundmanager.cpp @@ -13,7 +13,7 @@ LegoSoundManager::~LegoSoundManager() } // OFFSET: LEGO1 0x1002a3a0 STUB -MxLong LegoSoundManager::Tickle() +MxResult LegoSoundManager::Tickle() { // TODO return 0; diff --git a/LEGO1/mxcore.cpp b/LEGO1/mxcore.cpp index 78441d8d..ab73e242 100644 --- a/LEGO1/mxcore.cpp +++ b/LEGO1/mxcore.cpp @@ -22,7 +22,7 @@ MxLong MxCore::Notify(MxParam &p) } // OFFSET: LEGO1 0x10001f70 -MxLong MxCore::Tickle() +MxResult MxCore::Tickle() { return 0; } \ No newline at end of file diff --git a/LEGO1/mxdiskstreamcontroller.cpp b/LEGO1/mxdiskstreamcontroller.cpp index 61243410..9e37edc4 100644 --- a/LEGO1/mxdiskstreamcontroller.cpp +++ b/LEGO1/mxdiskstreamcontroller.cpp @@ -13,7 +13,7 @@ MxDiskStreamController::~MxDiskStreamController() } // OFFSET: LEGO1 0x100c8640 STUB -MxLong MxDiskStreamController::Tickle() +MxResult MxDiskStreamController::Tickle() { // TODO diff --git a/LEGO1/mxmediapresenter.cpp b/LEGO1/mxmediapresenter.cpp index 31e68abc..6a59a0ec 100644 --- a/LEGO1/mxmediapresenter.cpp +++ b/LEGO1/mxmediapresenter.cpp @@ -3,7 +3,7 @@ DECOMP_SIZE_ASSERT(MxMediaPresenter, 0x50); // OFFSET: LEGO1 0x100b5d10 STUB -MxLong MxMediaPresenter::Tickle() +MxResult MxMediaPresenter::Tickle() { // TODO return 0; diff --git a/LEGO1/mxpresenter.cpp b/LEGO1/mxpresenter.cpp index e82aa3a4..838b0af3 100644 --- a/LEGO1/mxpresenter.cpp +++ b/LEGO1/mxpresenter.cpp @@ -79,7 +79,7 @@ MxPresenter::~MxPresenter() } // OFFSET: LEGO1 0x100b5200 -MxLong MxPresenter::Tickle() +MxResult MxPresenter::Tickle() { MxAutoLocker lock(&this->m_criticalSection); diff --git a/LEGO1/mxtransitionmanager.cpp b/LEGO1/mxtransitionmanager.cpp index 8af3f497..fdae06ea 100644 --- a/LEGO1/mxtransitionmanager.cpp +++ b/LEGO1/mxtransitionmanager.cpp @@ -13,7 +13,7 @@ MxTransitionManager::~MxTransitionManager() } // OFFSET: LEGO1 0x1004bac0 STUB -MxLong MxTransitionManager::Tickle() +MxResult MxTransitionManager::Tickle() { // TODO diff --git a/LEGO1/mxvideomanager.cpp b/LEGO1/mxvideomanager.cpp index 81d431a9..8f64dbd4 100644 --- a/LEGO1/mxvideomanager.cpp +++ b/LEGO1/mxvideomanager.cpp @@ -15,7 +15,7 @@ MxVideoManager::~MxVideoManager() } // OFFSET: LEGO1 0x100bea90 -MxLong MxVideoManager::Tickle() +MxResult MxVideoManager::Tickle() { MxAutoLocker lock(&this->m_criticalSection);