This commit is contained in:
C4llSqin
2024-05-07 16:38:30 -06:00
parent 9357a6e4d5
commit 6d56553565
4 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -13,10 +13,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 1.12
java-version: 17
- name: Change wrapper permissions
run: chmod +x ./gradlew
- name: Build with Gradle
Binary file not shown.
Binary file not shown.
@@ -39,7 +39,7 @@ public class VirtualController extends GenericHID {
m_axes = new double[6];
m_buttonStates = 0;
m_buttonStatesLastFrame = 0;
m_pov = new short[1];
m_pov = new short[] {-1};
}
/**