diff --git a/interface/src/devices/Visage.cpp b/interface/src/devices/Visage.cpp index 4d1ea2b40b..2f1e6e745a 100644 --- a/interface/src/devices/Visage.cpp +++ b/interface/src/devices/Visage.cpp @@ -37,9 +37,9 @@ Visage::Visage() : _estimatedEyeYaw(0.0f) { #ifdef HAVE_VISAGE - QByteArray licensePath = Application::resourcesPath() + "visage/license.vlc"; + QByteArray licensePath = Application::resourcesPath().toLatin1() + "visage/license.vlc"; initializeLicenseManager(licensePath.data()); - _tracker = new VisageTracker2(Application::resourcesPath() + "visage/tracker.cfg"); + _tracker = new VisageTracker2(Application::resourcesPath().toLatin1() + "visage/tracker.cfg"); if (_tracker->trackFromCam()) { _data = new FaceData();