Controller: zero-initialize wCam values (#902)

This commit is contained in:
GaryOderNichts 2022-07-24 15:37:17 +02:00 committed by Kenix3
parent 62f56a4791
commit 6da8ffae11
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
namespace Ship {
Controller::Controller() : isRumbling(false), wStickX(0), wStickY(0), wGyroX(0), wGyroY(0), dwPressedButtons(0){
Controller::Controller() : isRumbling(false), wStickX(0), wStickY(0), wGyroX(0), wGyroY(0), wCamX(0), wCamY(0), dwPressedButtons(0){
Attachment = nullptr;
profiles.resize(MAXCONTROLLERS);
for(int slot = 0; slot < MAXCONTROLLERS; slot++) {