Fix path separator

This commit is contained in:
Daniel Wolf 2018-10-08 20:24:25 +02:00
parent 55a099ddc6
commit 3ed38ada2f
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ using std::array;
constexpr int sphinxSampleRate = 16000;
const path& getSphinxModelDirectory() {
static path sphinxModelDirectory(getBinDirectory() / "res/sphinx");
static path sphinxModelDirectory(getBinDirectory() / "res" / "sphinx");
return sphinxModelDirectory;
}