summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--ftnoir_tracker_rs/ftnoir_tracker_rs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ftnoir_tracker_rs/ftnoir_tracker_rs.cpp b/ftnoir_tracker_rs/ftnoir_tracker_rs.cpp
index deae3bca..8fa46df2 100644
--- a/ftnoir_tracker_rs/ftnoir_tracker_rs.cpp
+++ b/ftnoir_tracker_rs/ftnoir_tracker_rs.cpp
@@ -30,7 +30,7 @@ RSTracker::RSTracker() : mPose{ 0,0,0, 0,0,0 } {
connect(&mThread, &QThread::started,
&mThread, [this]{
mSocket.bind(QHostAddress::LocalHost, 4242, QUdpSocket::DontShareAddress);
- mRealSenseImplProcess.start("clientfiles\\opentrack-tracker-rs-impl.exe", QProcess::NotOpen);
+ mRealSenseImplProcess.start("opentrack-tracker-rs-impl.exe", QProcess::NotOpen);
}, Qt::DirectConnection);
connect(&mThread, &QThread::finished,
@@ -57,7 +57,7 @@ void RSTracker::readPendingUdpPoseData(){
void RSTracker::rsImplProcessError(QProcess::ProcessError error){
if(error == QProcess::FailedToStart){
- QMessageBox::warning(NULL, "RealSense Tracking Error", "Couldn't start the RealSense tracking module.\nMaybe clientfiles\\opentrack-tracker-rs-impl.exe is missing.", QMessageBox::Ok);
+ QMessageBox::warning(NULL, "RealSense Tracking Error", "Couldn't start the RealSense tracking module.\nMaybe opentrack-tracker-rs-impl.exe is missing.", QMessageBox::Ok);
}
else if(error == QProcess::Crashed){
QMessageBox::warning(NULL, "RealSense Tracking Error", "The RealSense tracking module has crashed.", QMessageBox::Ok);