mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-22 16:52:30 +08:00
fix(FrameFlags): Check for nullptr on m_player_info
This commit is contained in:
@ -13,7 +13,7 @@ namespace big
|
||||
|
||||
void looped::self_frame_flags()
|
||||
{
|
||||
if (g_local_player == nullptr) return;
|
||||
if (g_local_player == nullptr || g_local_player->m_player_info == nullptr) return;
|
||||
|
||||
uint32_t& flags = g_local_player->m_player_info->m_frame_flags;
|
||||
|
||||
|
Reference in New Issue
Block a user