Forgot this in last commit.

This commit is contained in:
Mr_Goldberg 2019-09-10 23:58:27 -04:00
parent 2af93427fe
commit 8b9e0e25ca
No known key found for this signature in database
GPG key ID: 8597D87419DEF278
3 changed files with 34 additions and 1 deletions

View file

@ -59,7 +59,7 @@ struct Image_Data {
};
struct Controller_Settings {
std::map<std::string, std::map<std::string, std::pair<std::set<std::string>, std::string>>> action_sets = {{"ship_controls", {{"analog_controls", {{"LJOY"}, "joystick_move"}}}}, {"menu_controls", {{"menu_up", {{"DLJOYUP", "DUP"}, ""}}, {"menu_down", {{"DLJOYDOWN", "DDOWN"}, ""}}}}};
std::map<std::string, std::map<std::string, std::pair<std::set<std::string>, std::string>>> action_sets;
std::map<std::string, std::string> action_set_layer_parents;
std::map<std::string, std::map<std::string, std::pair<std::set<std::string>, std::string>>> action_set_layers;
};