diff --git a/CMakeLists.txt b/CMakeLists.txt index 6f0e337..9b96123 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ if(NOT CMAKE_GENERATOR MATCHES "^(Ninja|Xcode)$") endif() cmake_minimum_required(VERSION 3.21) -project(xone_macos VERSION 0.1.17 LANGUAGES CXX Swift) +project(xone_macos VERSION 0.1.18 LANGUAGES CXX Swift) set(CMAKE_EXPORT_COMPILE_COMMANDS ON) diff --git a/src/app/main.swift b/src/app/main.swift index 3305bf5..cf033b1 100644 --- a/src/app/main.swift +++ b/src/app/main.swift @@ -222,6 +222,8 @@ struct ContentView: View { HStack(spacing: 4) { buttonIndicator("Guide", pressed: controller.guideDown) + buttonIndicator("Start", pressed: isPressed(controller, 0x0004)) + buttonIndicator("Select", pressed: isPressed(controller, 0x0008)) buttonIndicator("A", pressed: isPressed(controller, 0x0010)) buttonIndicator("B", pressed: isPressed(controller, 0x0020)) buttonIndicator("X", pressed: isPressed(controller, 0x0040))