small fix
This commit is contained in:
parent
31d18eb618
commit
d66771e7c5
@ -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())
|
||||
{
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user