Make the plugins use the right dll name (oops)

This commit is contained in:
endolf 2009-04-01 16:47:21 +00:00
parent 3cc17edd10
commit bfce766c46
2 changed files with 2 additions and 2 deletions

View file

@ -106,7 +106,7 @@ public final class DirectInputEnvironmentPlugin extends ControllerEnvironment im
if("x86".equals(getPrivilegedProperty("os.arch"))) {
loadLibrary("jinput-dx8");
} else {
loadLibrary("jinput-dx8-64");
loadLibrary("jinput-dx8_64");
}
}
}

View file

@ -106,7 +106,7 @@ public final class RawInputEnvironmentPlugin extends ControllerEnvironment imple
if("x86".equals(getPrivilegedProperty("os.arch"))) {
loadLibrary("jinput-raw");
} else {
loadLibrary("jinput-raw-64");
loadLibrary("jinput-raw_64");
}
}
}