- [FIX] Corregits un cabàs de warnings

This commit is contained in:
2026-05-16 09:06:34 +02:00
parent ae0ff0bd62
commit bb00507733
6 changed files with 10 additions and 119 deletions
+3 -3
View File
@@ -17,7 +17,7 @@ void save_code();
void loop() {
if (btnp(KEY_TAB)) {
current_editor = (++current_editor)%2;
current_editor = (current_editor+1)%2;
switch(current_editor) {
case 0:
init_terminal();
@@ -137,8 +137,8 @@ void load_code() {
}
std::list<std::string>::iterator ls[28];
static int col = 0;
static int line = 0;
static unsigned int col = 0;
static unsigned int line = 0;
void refresh_code_editor() {
color(COLOR_WHITE, COLOR_BLUE);