aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorendolf <[email protected]>2009-04-01 16:47:21 +0000
committerendolf <[email protected]>2009-04-01 16:47:21 +0000
commit55c2fe21fac4af7c4a5a210b09044ebb799da35e (patch)
tree63dac92ebdbd0b59088369d85cff63a438bfbd34
parent25647129919a4b1d6b087ea1325f7772ad69f57c (diff)
Make the plugins use the right dll name (oops)
git-svn-id: file:///home/sven/projects/JOGL/git-svn/svn-server-sync/jinput/trunk@226 e343933a-64c8-49c5-92b1-88f2ce3e89e8
-rw-r--r--plugins/windows/src/java/net/java/games/input/DirectInputEnvironmentPlugin.java2
-rw-r--r--plugins/windows/src/java/net/java/games/input/RawInputEnvironmentPlugin.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/windows/src/java/net/java/games/input/DirectInputEnvironmentPlugin.java b/plugins/windows/src/java/net/java/games/input/DirectInputEnvironmentPlugin.java
index c995876..deb53c3 100644
--- a/plugins/windows/src/java/net/java/games/input/DirectInputEnvironmentPlugin.java
+++ b/plugins/windows/src/java/net/java/games/input/DirectInputEnvironmentPlugin.java
@@ -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");
}
}
}
diff --git a/plugins/windows/src/java/net/java/games/input/RawInputEnvironmentPlugin.java b/plugins/windows/src/java/net/java/games/input/RawInputEnvironmentPlugin.java
index 80e7a79..36f089b 100644
--- a/plugins/windows/src/java/net/java/games/input/RawInputEnvironmentPlugin.java
+++ b/plugins/windows/src/java/net/java/games/input/RawInputEnvironmentPlugin.java
@@ -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");
}
}
}