- [NEW] [debugger] Soport per a expressions d'assignació en vscode

- [NEW] [debugger] Soport per a Logpoints en vscode
- [NEW] Al tornar del debugger, torna a pillar el foco la finestra de mini
This commit is contained in:
2026-03-31 14:04:17 +02:00
parent 6f5bdd274a
commit 6e5f9fb1a8
3 changed files with 235 additions and 87 deletions

View File

@@ -146,6 +146,11 @@ int16_t beats, num_beats = 0;
void createNewProject();
void raisewindow() {
SDL_RaiseWindow(mini_win);
//SDL_SetWindowInputFocus(mini_win);
}
char* get_value_from_line(char* line) {
char* equal_character = strchr(line, '=');
if (equal_character == NULL) return NULL;