Skip to content

Commit

Permalink
Fixed wrong path to mappings database
Browse files Browse the repository at this point in the history
  • Loading branch information
breiler committed Oct 29, 2023
1 parent 9cd5eff commit 51a2d07
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public void initialize() throws IOException {
Configuration configuration = new Configuration();
configuration.maxNumControllers = MAX_NUM_CONTROLLERS;

controllerManager = new ControllerManager(configuration, "com/willwinder/ugs/nbp/joystick/gamecontrollerdb.txt");
controllerManager = new ControllerManager(configuration, "/com/willwinder/ugs/nbp/joystick/gamecontrollerdb.txt");

isRunning = true; // mainLoop will run until this flag is set false
joystickReadThread.execute(this::mainLoop);
Expand Down

0 comments on commit 51a2d07

Please sign in to comment.