From af3858c0d8d82719df382bf002df32d94b5cadfa Mon Sep 17 00:00:00 2001 From: RadWolfie Date: Tue, 24 Mar 2020 06:02:03 -0500 Subject: [PATCH] add todo comments --- src/core/kernel/init/CxbxKrnl.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/core/kernel/init/CxbxKrnl.cpp b/src/core/kernel/init/CxbxKrnl.cpp index ed8903c62..f6f599e28 100644 --- a/src/core/kernel/init/CxbxKrnl.cpp +++ b/src/core/kernel/init/CxbxKrnl.cpp @@ -118,6 +118,7 @@ ULONG g_CxbxFatalErrorCode = FATAL_ERROR_NONE; // Define function located in EmuXApi so we can call it from here void SetupXboxDeviceTypes(); +// TODO: Move below function into a common(?) file // ported from Dxbx's XbeExplorer XbeType GetXbeType(Xbe::Header *pXbeHeader) { @@ -135,6 +136,7 @@ XbeType GetXbeType(Xbe::Header *pXbeHeader) return xtRetail; } +// TODO: Move below function into a common(?) file const char* GetSystemTypeToStr(unsigned int system) { if (system == SYSTEM_CHIHIRO) { @@ -152,6 +154,7 @@ const char* GetSystemTypeToStr(unsigned int system) return nullptr; } +// TODO: Move below function into a common(?) file const char* GetXbeTypeToStr(XbeType xbe_type) { if (xbe_type == xtChihiro) {