Skip to content

Commit 39cf467

Browse files
committed
Fix section config
1 parent 759d7b6 commit 39cf467

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

OpenVR/samples/driver_arduinohmd/driver_arduinohmd.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,10 +372,10 @@ class CDeviceDriver : public vr::ITrackedDeviceServerDriver, public vr::IVRDispl
372372
m_bStereoMode = vr::VRSettings()->GetBool(k_pch_steamvr_Section, k_pch_arduinoHMD_Stereo_Bool);
373373
m_bDebugMode = vr::VRSettings()->GetBool(k_pch_steamvr_Section, k_pch_arduinoHMD_DebugMode_Bool);
374374

375-
vr::VRSettings()->GetString(k_pch_steamvr_Section, k_pch_arduinoHMD_CenteringKey_String, buf, sizeof(buf));
375+
vr::VRSettings()->GetString(k_pch_arduinoHMD_Section, k_pch_arduinoHMD_CenteringKey_String, buf, sizeof(buf));
376376
m_centeringKey = KeyNameToKeyCode(buf);
377377

378-
vr::VRSettings()->GetString(k_pch_steamvr_Section, k_pch_arduinoHMD_CrouchPressKey_String, buf, sizeof(buf));
378+
vr::VRSettings()->GetString(k_pch_arduinoHMD_Section, k_pch_arduinoHMD_CrouchPressKey_String, buf, sizeof(buf));
379379
m_crouchPressKey = KeyNameToKeyCode(buf);
380380

381381
m_crouchOffset = vr::VRSettings()->GetFloat(k_pch_arduinoHMD_Section, k_pch_arduinoHMD_CrouchOffset_Float);

0 commit comments

Comments
 (0)