diff --git a/include/RE/T/ThumbstickEvent.h b/include/RE/T/ThumbstickEvent.h index a15ba1408..9b2606bf4 100644 --- a/include/RE/T/ThumbstickEvent.h +++ b/include/RE/T/ThumbstickEvent.h @@ -38,13 +38,13 @@ namespace RE userEvent = a_userEvent; } - #ifndef SKYRIMVR +#ifndef SKYRIMVR [[nodiscard]] bool IsLeft() const; [[nodiscard]] bool IsRight() const; - #else +#else [[nodiscard]] bool IsOffHand() const; [[nodiscard]] bool IsMainHand() const; - #endif +#endif // members float xValue; // 28 diff --git a/src/RE/T/ThumbstickEvent.cpp b/src/RE/T/ThumbstickEvent.cpp index 831a74f32..502714d23 100644 --- a/src/RE/T/ThumbstickEvent.cpp +++ b/src/RE/T/ThumbstickEvent.cpp @@ -2,7 +2,7 @@ namespace RE { - #ifndef SKYRIMVR +#ifndef SKYRIMVR bool ThumbstickEvent::IsLeft(void) const { return idCode == InputType::kLeftThumbstick; @@ -12,7 +12,7 @@ namespace RE { return idCode == InputType::kRightThumbstick; } - #else +#else bool ThumbstickEvent::IsOffHand(void) const { return idCode == InputType::kLeftThumbstick; @@ -22,5 +22,5 @@ namespace RE { return idCode == InputType::kRightThumbstick; } - #endif +#endif }