mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-06 18:02:28 -04:00
Fix mDoHIO inlines
This commit is contained in:
@@ -49,10 +49,10 @@ public:
|
||||
|
||||
void update();
|
||||
|
||||
s8 mDoHIO_createChild(const char* name, JORReflexible* hio) {
|
||||
s8 createChild(const char* name, JORReflexible* hio) {
|
||||
return m_subroot.createChild(name, hio);
|
||||
}
|
||||
void mDoHIO_deleteChild(s8 childID) {
|
||||
void deleteChild(s8 childID) {
|
||||
m_subroot.deleteChild(childID);
|
||||
}
|
||||
|
||||
@@ -66,4 +66,12 @@ public:
|
||||
|
||||
extern mDoHIO_root_c mDoHIO_root;
|
||||
|
||||
inline s8 mDoHIO_createChild(const char* name, JORReflexible* hio) {
|
||||
return mDoHIO_root.createChild(name, hio);
|
||||
}
|
||||
|
||||
inline void mDoHIO_deleteChild(s8 childID) {
|
||||
mDoHIO_root.deleteChild(childID);
|
||||
}
|
||||
|
||||
#endif /* M_DO_M_DO_HOSTIO_H */
|
||||
|
||||
Reference in New Issue
Block a user