chore: Remove unused pointer (#216)

This commit is contained in:
Sainan 2022-05-17 15:56:41 +02:00 committed by GitHub
parent 6c0d8072f9
commit a37a42e305
2 changed files with 0 additions and 8 deletions

View File

@ -157,12 +157,6 @@ namespace big
m_spectator_check = ptr.add(0x13).as<PUSHORT>();
});
// GET CNetGamePlayer
main_batch.add("GCNGP", "48 83 EC ? 33 C0 38 05 ? ? ? ? 74 ? 83 F9", [this](memory::handle ptr)
{
m_get_net_game_player = ptr.as<decltype(m_get_net_game_player)>();
});
// Replay Interface
main_batch.add("RI", "48 8D 0D ? ? ? ? 48 8B D7 E8 ? ? ? ? 48 8D 0D ? ? ? ? 8A D8 E8 ? ? ? ? 84 DB 75 13 48 8D 0D", [this](memory::handle ptr)
{

View File

@ -55,8 +55,6 @@ namespace big
functions::get_screen_coords_for_world_coords* m_get_screen_coords_for_world_coords{};
functions::get_net_game_player* m_get_net_game_player{};
PVOID m_gta_thread_start{};
PVOID m_gta_thread_tick{};
PVOID m_gta_thread_kill{};