mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 16:55:06 +02:00
Merge pull request #6618 from hyperlogic/tony/sixense-debug-draw-fix
Fix for sixense debug draw after migration to plugin.
This commit is contained in:
commit
f6cd04680d
1 changed files with 3 additions and 2 deletions
|
@ -8,10 +8,11 @@
|
|||
//
|
||||
|
||||
#include "DebugDraw.h"
|
||||
#include "SharedUtil.h"
|
||||
|
||||
DebugDraw& DebugDraw::getInstance() {
|
||||
static DebugDraw instance;
|
||||
return instance;
|
||||
static DebugDraw* instance = globalInstance<DebugDraw>("com.highfidelity.DebugDraw");
|
||||
return *instance;
|
||||
}
|
||||
|
||||
DebugDraw::DebugDraw() {
|
||||
|
|
Loading…
Reference in a new issue