renomena tipus _t/_e a CamelCase (Circle, Color, Section, ...)

This commit is contained in:
2026-05-14 22:16:36 +02:00
parent 9a2da460cc
commit 0bc55f5732
37 changed files with 209 additions and 209 deletions
+3 -3
View File
@@ -20,7 +20,7 @@ namespace Options {
Audio audio;
Loading loading;
Settings settings;
std::vector<input_t> inputs;
std::vector<InputDevice> inputs;
std::vector<PostFXPreset> postfx_presets;
std::string postfx_file_path;
@@ -197,13 +197,13 @@ namespace Options {
// Dispositius d'entrada per defecte
inputs.clear();
input_t kb;
InputDevice kb;
kb.id = 0;
kb.name = "KEYBOARD";
kb.deviceType = INPUT_USE_KEYBOARD;
inputs.push_back(kb);
input_t gc;
InputDevice gc;
gc.id = 0;
gc.name = "GAME CONTROLLER";
gc.deviceType = INPUT_USE_GAMECONTROLLER;