Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sieren committed Aug 6, 2020
1 parent ef95445 commit 6b07ac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/touch/TouchDriver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace gfx
void TouchDriver::updateHardwareConfig(config::HardwareConfig& hwConfig)
{
mXAxisInversionAmount = hwConfig.mIsTouchXAxisInverted ? ScreenWidth : 0;
mYAxisInversionAmount = hwConfig.mIsTouchXAxisInverted ? ScreenHeight : 0;
mYAxisInversionAmount = hwConfig.mIsTouchYAxisInverted ? ScreenHeight : 0;
}

auto TouchDriver::touchPoint() -> std::optional<TouchEvent>
Expand Down

0 comments on commit 6b07ac7

Please sign in to comment.