Estandaritzant noms segons convencions

This commit is contained in:
2024-10-10 20:27:31 +02:00
parent 9e5f41644e
commit d6c3c89872
67 changed files with 1457 additions and 1504 deletions

View File

@@ -7,10 +7,10 @@
#include "input.h" // for inputs_e, INPUT_USE_ANY, INPUT_...
#include "lang.h" // for lang_e
#include "screen.h" // for ScreenVideoMode, ScreenFilter
#include "utils.h" // for op_controller_t, options_t, op_...
#include "utils.h" // for OptionsController, Options, op_...
// Variables
options_t options;
Options options;
// Declaraciones
bool setOptions(std::string var, std::string value);
@@ -34,7 +34,7 @@ void initOptions()
options.notification.posV = pos_top;
options.notification.posH = pos_left;
options.notification.sound = false;
options.notification.color = (color_t){48, 48, 48};
options.notification.color = (Color){48, 48, 48};
// Opciones de audio
options.audio.music.enabled = true;
@@ -49,7 +49,7 @@ void initOptions()
// Opciones de control
options.controller.clear();
op_controller_t c;
OptionsController c;
const int numPlayers = 2;
for (int index = 0; index < numPlayers; ++index)