diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/manicure.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/manicure.rb b/scripts/manicure.rb index f0fa0d184..1b331272c 100755 --- a/scripts/manicure.rb +++ b/scripts/manicure.rb @@ -1282,9 +1282,9 @@ class Display commandString << "}\n " end if hash["h264Profile"] != "" && hash["h264Profile"] != "auto" - commandString << "if (x264_profile == NULL)\n " + commandString << "if (h264_profile == NULL)\n " commandString << "{\n " - commandString << " x264_profile = strdup(\"" + commandString << " h264_profile = strdup(\"" commandString << hash["h264Profile"] << "\");\n " commandString << "}\n " end |