Browse Source

Fixed a Projucer string obfuscation bug

tags/2021-05-28
Tom Poole 8 years ago
parent
commit
ea81467377
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Projucer/Source/Application/jucer_CommandLine.cpp

+ 1
- 1
extras/Projucer/Source/Application/jucer_CommandLine.cpp View File

@@ -545,7 +545,7 @@ namespace
static void generateObfuscatedStringCode (const StringArray& args) static void generateObfuscatedStringCode (const StringArray& args)
{ {
checkArgumentCount (args, 2); checkArgumentCount (args, 2);
const String originalText (args[1]);
const String originalText (args[1].unquoted());
struct Section struct Section
{ {


Loading…
Cancel
Save