[FIX] Some 'setmode's remained in C code

This commit is contained in:
2021-12-17 16:45:27 +01:00
parent 64bcedd82f
commit 97daca8097

View File

@@ -79,7 +79,7 @@ uint8_t get_char(uint8_t key) {
}
void init_terminal() {
setmode(0);
mode(0);
cls();
}
@@ -270,7 +270,7 @@ void refresh_code_editor() {
}
void init_code_editor() {
setmode(3);
mode(3);
code.clear();
load_code();
refresh_code_editor();