Updated to return the controller name unmodified from JInput.

This commit is contained in:
Kevin Glass 2006-11-17 07:17:12 +00:00
parent 70e3294b7b
commit 15fd0f6d81
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ class JInputController implements Controller {
*/
public String getName() {
String name = target.getName();
return name.substring(0,name.length()/2);
return name;
}
/*