mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 16:36:54 +02:00
Another compile fix.
This commit is contained in:
parent
1cf559208e
commit
ecb54600eb
1 changed files with 2 additions and 2 deletions
|
@ -37,9 +37,9 @@ Visage::Visage() :
|
||||||
_estimatedEyeYaw(0.0f) {
|
_estimatedEyeYaw(0.0f) {
|
||||||
|
|
||||||
#ifdef HAVE_VISAGE
|
#ifdef HAVE_VISAGE
|
||||||
QByteArray licensePath = Application::resourcesPath() + "visage/license.vlc";
|
QByteArray licensePath = Application::resourcesPath().toLatin1() + "visage/license.vlc";
|
||||||
initializeLicenseManager(licensePath.data());
|
initializeLicenseManager(licensePath.data());
|
||||||
_tracker = new VisageTracker2(Application::resourcesPath() + "visage/tracker.cfg");
|
_tracker = new VisageTracker2(Application::resourcesPath().toLatin1() + "visage/tracker.cfg");
|
||||||
if (_tracker->trackFromCam()) {
|
if (_tracker->trackFromCam()) {
|
||||||
_data = new FaceData();
|
_data = new FaceData();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue