diff --git a/src/Config.h b/src/Config.h index 8af91f88..efd0c174 100644 --- a/src/Config.h +++ b/src/Config.h @@ -35,7 +35,7 @@ #define VER_LAMEXP_MINOR_LO 1 #define VER_LAMEXP_TYPE Beta #define VER_LAMEXP_PATCH 13 -#define VER_LAMEXP_BUILD 1669 +#define VER_LAMEXP_BUILD 1670 #define VER_LAMEXP_CONFG 1558 /////////////////////////////////////////////////////////////////////////////// diff --git a/src/Decoder_Wave.cpp b/src/Decoder_Wave.cpp index 90bb39b9..e9e8f4e6 100644 --- a/src/Decoder_Wave.cpp +++ b/src/Decoder_Wave.cpp @@ -40,7 +40,7 @@ WaveDecoder::~WaveDecoder(void) bool WaveDecoder::decode(const QString &sourceFile, const QString &outputFile, volatile bool *abortFlag) { - emit messageLogged(QString("Copy file \"%1\" to \"%2\"").arg(sourceFile, outputFile)); + emit messageLogged(QString("Copy file \"%1\" to \"%2\"").arg(QDir::toNativeSeparators(sourceFile), QDir::toNativeSeparators(outputFile))); emit statusUpdated(0); const bool okay = MUtils::OS::copy_file(sourceFile, outputFile);