Skip to content

Commit

Permalink
maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightfallstorm authored and github-actions[bot] committed Dec 8, 2023
1 parent c5f5fac commit 146a125
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions include/RE/T/ThumbstickEvent.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions src/RE/T/ThumbstickEvent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace RE
{
#ifndef SKYRIMVR
#ifndef SKYRIMVR
bool ThumbstickEvent::IsLeft(void) const
{
return idCode == InputType::kLeftThumbstick;
Expand All @@ -12,7 +12,7 @@ namespace RE
{
return idCode == InputType::kRightThumbstick;
}
#else
#else
bool ThumbstickEvent::IsOffHand(void) const
{
return idCode == InputType::kLeftThumbstick;
Expand All @@ -22,5 +22,5 @@ namespace RE
{
return idCode == InputType::kRightThumbstick;
}
#endif
#endif
}

0 comments on commit 146a125

Please sign in to comment.