mirror of
https://github.com/lubosz/overte.git
synced 2025-04-19 16:44:04 +02:00
make the sixense library name a constant
This commit is contained in:
parent
f7a17b7dec
commit
db0bfd53ae
1 changed files with 2 additions and 1 deletions
|
@ -93,7 +93,8 @@ void SixenseManager::initialize() {
|
|||
#ifdef __APPLE__
|
||||
|
||||
if (!_sixenseLibrary) {
|
||||
_sixenseLibrary = new QLibrary("libsixense_x64.dylib");
|
||||
const QString SIXENSE_LIBRARY_NAME = "libsixense_x64.dylib";
|
||||
_sixenseLibrary = new QLibrary(SIXENSE_LIBRARY_NAME);
|
||||
}
|
||||
|
||||
SixenseBaseFunction sixenseInit = (SixenseBaseFunction) _sixenseLibrary->resolve("sixenseInit");
|
||||
|
|
Loading…
Reference in a new issue