small fix
This commit is contained in:
parent
1d06f9108c
commit
cd16afe704
@ -63,4 +63,4 @@ namespace branding
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
//REGISTER_COMPONENT(branding::component)
|
REGISTER_COMPONENT(branding::component)
|
@ -221,4 +221,4 @@ namespace scheduler
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
//REGISTER_COMPONENT(scheduler::component)
|
REGISTER_COMPONENT(scheduler::component)
|
@ -40,10 +40,10 @@ namespace game
|
|||||||
{
|
{
|
||||||
if (environment::is_sp())
|
if (environment::is_sp())
|
||||||
{
|
{
|
||||||
return sp_object_;
|
return reinterpret_cast<T*>((uint64_t)sp_object_ + base_address);
|
||||||
}
|
}
|
||||||
|
|
||||||
return mp_object_;
|
return reinterpret_cast<T*>((uint64_t)mp_object_ + base_address);
|
||||||
}
|
}
|
||||||
|
|
||||||
operator T* () const
|
operator T* () const
|
||||||
|
Loading…
Reference in New Issue
Block a user