Better cons init

This commit is contained in:
xarkes 2018-02-23 19:10:19 +01:00
parent e90c550053
commit 9abaf3d4a6

View File

@ -329,8 +329,8 @@ R_API RCons *r_cons_new() {
I.mouse = 0;
I.cons_stack = r_stack_newf (6, cons_stack_free);
I.break_stack = r_stack_newf (6, break_stack_free);
r_cons_pal_init ();
r_cons_rgb_init ();
r_cons_pal_init ();
r_cons_reset ();
return &I;
}