mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 16:13:28 +02:00
Initialization order fix.
This commit is contained in:
parent
9cb671aa56
commit
4519b43072
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@
|
|||
#include "Application.h"
|
||||
#include "Webcam.h"
|
||||
|
||||
Webcam::Webcam() : _frameTextureID(0), _frameCount(0), _startTimestamp(0) {
|
||||
Webcam::Webcam() : _frameTextureID(0), _startTimestamp(0), _frameCount(0) {
|
||||
// the grabber simply runs as fast as possible
|
||||
_grabber = new FrameGrabber();
|
||||
_grabber->moveToThread(&_grabberThread);
|
||||
|
|
Loading…
Reference in a new issue