Hi,
i’ve downloaded the JInput from CVS and tried to compile it.
My problem is, that it doesn’t compile, because it can’t find the class “LinuxDeviceRumbler”.
File: LinuxDevice.java
if(getFFEnabled()) {
System.out.println("Java code thinks FF is enabled for device " + name);
Rumbler[] tempRumblers = rumblers;
rumblers = new Rumbler[rumblers.length+1];
System.arraycopy(tempRumblers,0,rumblers,0,tempRumblers.length);
rumblers[rumblers.length-1] = new LinuxDeviceRumbler(nativeID);
System.out.println("rumblers.length: " + rumblers.length);
System.out.println("getRumblers().length: " + getRumblers().length);
} else {
System.out.println("Java code thinks FF is disabled for device " + name);
}
Could you please help me to solve this problem?
Thanks