Compare commits

..

2 Commits

4 changed files with 5 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
#ifndef JA_USESDLMIXER
#include "jail_audio.h"
#include "stb_vorbis.c"
#include "stb_vorbis.h"
#include <SDL3/SDL.h>
#include <stdio.h>

View File

@@ -31,6 +31,9 @@ namespace Options
// Inicializa las opciones del programa
void init()
{
// Settings
settings.config_file = Asset::get()->get("config.txt");
// Opciones de control
controllers.clear();
controllers.resize(2);

View File

@@ -130,7 +130,7 @@ namespace Options
shutdown_enabled(false),
is_y_axis_inverted(false),
last_hi_score_entry({INVALID_INDEX, INVALID_INDEX}),
config_file(Asset::get()->get("config.txt")) {}
config_file() {}
// Reinicia las últimas entradas de puntuación
void clearLastHiScoreEntries()