couple of linux tweaks
parent
145d1a6561
commit
d42e1feeb7
|
@ -76,7 +76,7 @@ HOOK_SIG(my_file_settings){
|
||||||
|
|
||||||
push_parameter(app, cmd_context, par_lex_as_cpp_file, treat_as_code);
|
push_parameter(app, cmd_context, par_lex_as_cpp_file, treat_as_code);
|
||||||
push_parameter(app, cmd_context, par_wrap_lines, !treat_as_code);
|
push_parameter(app, cmd_context, par_wrap_lines, !treat_as_code);
|
||||||
push_parameter(app, cmd_context, par_key_mapid, (treat_as_code)?(my_code_map):(mapid_file));
|
push_parameter(app, cmd_context, par_key_mapid, (treat_as_code)?((int)my_code_map):((int)mapid_file));
|
||||||
exec_command(cmd_context, cmdid_set_settings);
|
exec_command(cmd_context, cmdid_set_settings);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,7 +22,12 @@
|
||||||
#include "4ed_mem.cpp"
|
#include "4ed_mem.cpp"
|
||||||
#include "4ed_math.cpp"
|
#include "4ed_math.cpp"
|
||||||
|
|
||||||
#include "4coder_custom.h"
|
#include "4coder_custom.cpp"
|
||||||
|
|
||||||
|
#undef exec_command
|
||||||
|
#undef exec_command_keep_stack
|
||||||
|
#undef clear_parameters
|
||||||
|
|
||||||
#include "4ed_system.h"
|
#include "4ed_system.h"
|
||||||
#include "4ed_rendering.h"
|
#include "4ed_rendering.h"
|
||||||
#include "4ed.h"
|
#include "4ed.h"
|
||||||
|
@ -1650,6 +1655,10 @@ main(int argc, char **argv)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
if (linuxvars.custom_api.get_bindings == 0){
|
||||||
|
linuxvars.custom_api.get_bindings = get_bindings;
|
||||||
|
}
|
||||||
|
|
||||||
Thread_Context background[4] = {};
|
Thread_Context background[4] = {};
|
||||||
linuxvars.groups[BACKGROUND_THREADS].threads = background;
|
linuxvars.groups[BACKGROUND_THREADS].threads = background;
|
||||||
linuxvars.groups[BACKGROUND_THREADS].count = ArrayCount(background);
|
linuxvars.groups[BACKGROUND_THREADS].count = ArrayCount(background);
|
||||||
|
|
Loading…
Reference in New Issue