Skip to content

Commit 8869954

Browse files
committed
Fix broken leftmost key and air 6
1 parent 4f28d4c commit 8869954

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.15)
22

33
set(CMAKE_SYSTEM_VERSION "10.0.19041")
44

5-
project(brokenithm-kb VERSION 0.1.1)
5+
project(brokenithm-kb VERSION 0.1.2)
66

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

src/src/BrokenithmServer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ void BrokenithmServer::Impl::start_server()
176176

177177
for (int i = 0; i < 38; i++)
178178
{
179-
if (message[i] == '1')
179+
if (message[i+1] == '1')
180180
{
181181
m_controller_state.add_button(i);
182182
}

static/README.txt

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ Read more at https://github.com/4yn/brokenithm-kb
1919
CHANGELOG
2020
=========
2121

22+
v0.1.2
23+
- Fixed broken leftmost key and air 6
24+
2225
v0.1.1
2326
- Removed openssl/zlib bloat
2427

0 commit comments

Comments
 (0)