Skip to content

Commit

Permalink
Fix broken leftmost key and air 6
Browse files Browse the repository at this point in the history
  • Loading branch information
4yn committed Dec 9, 2021
1 parent 4f28d4c commit 8869954
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.15)

set(CMAKE_SYSTEM_VERSION "10.0.19041")

project(brokenithm-kb VERSION 0.1.1)
project(brokenithm-kb VERSION 0.1.2)

message("Using kit " "${CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION}")

Expand Down
2 changes: 1 addition & 1 deletion src/src/BrokenithmServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ void BrokenithmServer::Impl::start_server()

for (int i = 0; i < 38; i++)
{
if (message[i] == '1')
if (message[i+1] == '1')
{
m_controller_state.add_button(i);
}
Expand Down
3 changes: 3 additions & 0 deletions static/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ Read more at https://github.com/4yn/brokenithm-kb
CHANGELOG
=========

v0.1.2
- Fixed broken leftmost key and air 6

v0.1.1
- Removed openssl/zlib bloat

Expand Down

0 comments on commit 8869954

Please sign in to comment.