Estandaritzant noms segons convencions
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user