add todo comments
This commit is contained in:
parent
fbe4987569
commit
af3858c0d8
|
@ -118,6 +118,7 @@ ULONG g_CxbxFatalErrorCode = FATAL_ERROR_NONE;
|
||||||
// Define function located in EmuXApi so we can call it from here
|
// Define function located in EmuXApi so we can call it from here
|
||||||
void SetupXboxDeviceTypes();
|
void SetupXboxDeviceTypes();
|
||||||
|
|
||||||
|
// TODO: Move below function into a common(?) file
|
||||||
// ported from Dxbx's XbeExplorer
|
// ported from Dxbx's XbeExplorer
|
||||||
XbeType GetXbeType(Xbe::Header *pXbeHeader)
|
XbeType GetXbeType(Xbe::Header *pXbeHeader)
|
||||||
{
|
{
|
||||||
|
@ -135,6 +136,7 @@ XbeType GetXbeType(Xbe::Header *pXbeHeader)
|
||||||
return xtRetail;
|
return xtRetail;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Move below function into a common(?) file
|
||||||
const char* GetSystemTypeToStr(unsigned int system)
|
const char* GetSystemTypeToStr(unsigned int system)
|
||||||
{
|
{
|
||||||
if (system == SYSTEM_CHIHIRO) {
|
if (system == SYSTEM_CHIHIRO) {
|
||||||
|
@ -152,6 +154,7 @@ const char* GetSystemTypeToStr(unsigned int system)
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Move below function into a common(?) file
|
||||||
const char* GetXbeTypeToStr(XbeType xbe_type)
|
const char* GetXbeTypeToStr(XbeType xbe_type)
|
||||||
{
|
{
|
||||||
if (xbe_type == xtChihiro) {
|
if (xbe_type == xtChihiro) {
|
||||||
|
|
Loading…
Reference in New Issue