Skip to content

Commit 303de3b

Browse files
committed
Try to fix lin and win compilation errors
1 parent 9a84c94 commit 303de3b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/OrestesOne.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ struct OrestesOneModule : Module {
442442
dsp::ClockDivider indicatorDivider;
443443

444444
/** [Stored to Json] */
445-
std::array<std::string, MAX_PAGES> pageLabels{}; // Current mapped module control page labels
445+
std::array<std::string, MAX_PAGES> pageLabels{"", "", "", "", "", ""}; // Current mapped module control page labels
446446

447447
// MEM-
448448
// Pointer of the MEM's attribute

src/Pylades.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ struct OscOutput {
394394
dsp::ClockDivider lightDivider;
395395

396396
/** [Stored to Json] */
397-
std::array<std::string, MAX_PAGES> pageLabels{}; // Current mapped module control page labels
397+
std::array<std::string, MAX_PAGES> pageLabels{"", "", "", "", "", ""}; // Current mapped module control page labels
398398

399399
// MEM-
400400
// Pointer of the MEM's attribute

src/RSBATechModules.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ struct MemModule {
4646
std::string moduleName;
4747
bool autoMapped;
4848
std::list<MemParam*> paramMap;
49-
std::array<std::string, MAX_PAGES> pageLabels{};
49+
std::array<std::string, MAX_PAGES> pageLabels{"", "", "", "", "", ""};
5050
~MemModule() {
5151
for (auto it : paramMap) delete it;
5252
}

0 commit comments

Comments
 (0)