• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Main repository of MikuMikuStudio


Commit MetaInfo

Revision25dc020a29b7f40124f58ce872017f7f6e10fb11 (tree)
Time2003-10-27 02:48:56
Authormojomonkey <mojomonkey@75d0...>
Commitermojomonkey

Log Message

Fixed bug where checking null of keyboard rather than mouse for getMouseInput.

git-svn-id: http://jmonkeyengine.googlecode.com/svn/trunk@113 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

Change Summary

Incremental Difference

--- a/src/com/jme/input/InputSystem.java
+++ b/src/com/jme/input/InputSystem.java
@@ -43,7 +43,7 @@ import com.jme.util.LoggingSystem;
4343 * @see com.jme.input.KeyInput
4444 * @see com.jme.input.MouseInput
4545 * @author Mark Powell
46- * @version $Id: InputSystem.java,v 1.1 2003-10-23 21:24:18 mojomonkey Exp $
46+ * @version $Id: InputSystem.java,v 1.2 2003-10-26 17:48:56 mojomonkey Exp $
4747 */
4848 public class InputSystem {
4949 //the input devices.
@@ -85,7 +85,7 @@ public class InputSystem {
8585 * @return the mouse input device.
8686 */
8787 public static MouseInput getMouseInput() {
88- if (keyInput == null) {
88+ if (mouseInput == null) {
8989 LoggingSystem.getLogger().log(
9090 Level.WARNING,
9191 "MouseInput is null,"