Skip to content

Commit

Permalink
Removed extraneous double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
omichel committed May 28, 2020
1 parent 843a3b6 commit 24563c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/webots/sound/WbWaveFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -211,11 +211,11 @@ void WbWaveFile::loadFromFile(int side) {
static QString ffmpeg("avconv");
static QString percentageChar = "%";
#elif defined(__APPLE__)
static QString ffmpeg(QString("\"%1util/ffmpeg\"").arg(WbStandardPaths::webotsHomePath()));
static QString ffmpeg(QString("%1util/ffmpeg").arg(WbStandardPaths::webotsHomePath()));
static QString percentageChar = "%";
#else // _WIN32
static QString ffmpeg =
QDir::toNativeSeparators(QString("\"%1mingw64/bin/ffmpeg.exe\"").arg(WbStandardPaths::webotsMsys64Path()));
QDir::toNativeSeparators(QString("%1mingw64/bin/ffmpeg.exe").arg(WbStandardPaths::webotsMsys64Path()));
static QString percentageChar = "%%";
#endif

Expand Down

0 comments on commit 24563c5

Please sign in to comment.