Browse Source

Projucer: Make it simpler to uncomment config flags with no specified value in JUCE's AppConfig.h by including the "1" in the define

tags/2021-05-28
hogliux 8 years ago
parent
commit
95aa44bbfc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Projucer/Source/Project Saving/jucer_ProjectSaver.h

+ 1
- 1
extras/Projucer/Source/Project Saving/jucer_ProjectSaver.h View File

@@ -454,7 +454,7 @@ private:
else if (value == Project::configFlagDisabled)
out << " #define " << f->symbol << " 0";
else if (f->defaultValue.isEmpty())
out << " //#define " << f->symbol;
out << " //#define " << f->symbol << " 1";
else
out << " #define " << f->symbol << " " << f->defaultValue;


Loading…
Cancel
Save