Bumped GTAV-Classes, removed unused declarations and other stuff (#638)

This commit is contained in:
Yimura
2022-11-25 22:29:03 +01:00
committed by GitHub
parent b5466f8ba4
commit 14a9b78df1
6 changed files with 36 additions and 7 deletions

View File

@ -8,9 +8,6 @@ namespace big
{
class looped {
public:
static void api_login_session();
static void context_menu();
static void hud_transition_state();
static void tunables_disable_phone();
@ -19,8 +16,6 @@ namespace big
static void player_spectate();
static void player_remote_control_vehicle();
static void protections_replay_interface();
static void self_clean_player();
static void self_free_cam_disable_control_action();
static void self_free_cam();
@ -40,6 +35,7 @@ namespace big
static void session_local_time();
static void system_disable_sigscanner();
static void system_self_globals();
static void system_update_pointers();
static void system_desync_kick_protection();

View File

@ -0,0 +1,15 @@
#include "backend/looped/looped.hpp"
#include "pointers.hpp"
#include "rage/atSingleton.hpp"
#include "security/RageSecurity.hpp"
namespace big
{
void looped::system_disable_sigscanner()
{
if (g_pointers->m_security->isValid())
{
g_pointers->m_security->getInstance()->m_interval = std::numeric_limits<std::uint32_t>::max();
}
}
}