fixed playback/export flickering and hanging

This commit is contained in:
itsmattkc
2018-10-29 17:01:52 +11:00
parent 2e2846597e
commit a54fee767d
32 changed files with 216 additions and 163 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef DEBUG_H
#define DEBUG_H
#include <QDebug>
#ifndef QT_DEBUG
#define dout debug_out << "\n"
extern QDebug debug_out;
#else
#define dout qDebug()
#endif
void setup_debug();
void close_debug();
#endif // DEBUG_H