active           1554 core/gui_draw.c void draw_button(int x, int y, int w, int str_id, int active)
active           1556 core/gui_draw.c     twoColors cl = MAKE_COLOR((active) ? COLOR_RED : COLOR_BLACK, COLOR_WHITE);
active            132 core/gui_draw.h extern void draw_button(int x, int y, int w, int str_id, int active);
active            179 modules/gui_bench.c static int bench_draw_control_txt(int pos, const char *s, int active) {
active            181 modules/gui_bench.c     if(active) {
active            189 modules/gui_bench.c static int bench_draw_checkbox(int pos, const char *title, int active, int checked) {
active            190 modules/gui_bench.c     pos = bench_draw_control_txt(pos,title,active);
active            191 modules/gui_bench.c     pos = bench_draw_control_txt(pos," [",active);
active            192 modules/gui_bench.c     pos = bench_draw_control_txt(pos,(checked)?"\x95":" ",active);
active            193 modules/gui_bench.c     pos = bench_draw_control_txt(pos,"]",active);
active            751 modules/rawhookops.c void rawop_update_hook_status(int active) {
active            752 modules/rawhookops.c     if(active) {
active             10 modules/script_shoot_hook.c     int active; // hook has been reached, set from hooked task, cleared from script to resume
active             32 modules/script_shoot_hook.c void rawop_update_hook_status(int active);
active             46 modules/script_shoot_hook.c         hooks[hook].active = 1;
active             47 modules/script_shoot_hook.c         while(timeleft > 0 && hooks[hook].active) {
active             54 modules/script_shoot_hook.c         hooks[hook].active = 0;
active             62 modules/script_shoot_hook.c     return hooks[hook].active;
active             68 modules/script_shoot_hook.c     hooks[hook].active = 0;