Skip to content

Commit

Permalink
remove target_first_circle
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciremun committed Jan 8, 2024
1 parent 5ad83a4 commit 91c9ecc
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
7 changes: 0 additions & 7 deletions freedom/features/aimbot.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#include "features/aimbot.h"

static bool target_first_circle = true;

static inline Vector2<float> mouse_position()
{
Vector2<float> mouse_pos(.0f, .0f);
Expand Down Expand Up @@ -71,8 +69,3 @@ void update_aimbot(Circle &circle, const int32_t audio_time)
angle > 2 * PI ? angle = 0 : angle += cfg_spins_per_minute / three_pi * ImGui::GetIO().DeltaTime;
}
}

void aimbot_on_beatmap_load()
{
target_first_circle = true;
}
1 change: 0 additions & 1 deletion freedom/hitobject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ void process_hitobject()
{
parse_beatmap(osu_manager_ptr, current_beatmap);

aimbot_on_beatmap_load();
relax_on_beatmap_load();
replay_on_beatmap_load();
unmod_flashlight_on_beatmap_load();
Expand Down
1 change: 0 additions & 1 deletion include/features/aimbot.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@
#include "config.h"

void update_aimbot(Circle &circle, const int32_t audio_time);
void aimbot_on_beatmap_load();

0 comments on commit 91c9ecc

Please sign in to comment.