File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
platform/windows/gui/helper Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -30,12 +30,12 @@ struct avocado_config_t {
3030 KeyBindings keys;
3131 } controller[2 ]{
3232 {
33- . type = ControllerType::analog,
34- . keys = DefaultKeyBindings::keyboard_numpad (),
33+ ControllerType::analog,
34+ DefaultKeyBindings::keyboard_numpad (),
3535 },
3636 {
37- . type = ControllerType::none,
38- . keys = DefaultKeyBindings::none (),
37+ ControllerType::none,
38+ DefaultKeyBindings::none (),
3939 },
4040 };
4141
@@ -81,8 +81,8 @@ struct avocado_config_t {
8181 struct {
8282 std::string path;
8383 } memoryCard[2 ]{
84- {. path = " data/memory/card1.mcr" }, //
85- {. path = " " }, //
84+ {" data/memory/card1.mcr" }, //
85+ {" " }, //
8686 };
8787
8888 struct {
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ void FileDialog::getDriveList() {
7474 continue ;
7575 }
7676
77- auto volume = fs::path (components[1 ]);
77+ auto volume = fs::path (std::string ( components[1 ]) );
7878 auto name = volume.filename ().string ();
7979 if (name.empty ()) {
8080 name = " /" ;
You can’t perform that action at this time.
0 commit comments