diff options
author | Steve <steveb9@u.washington.edu> | 2011-03-18 03:51:35 +0000 |
---|---|---|
committer | Steve <steveb9@u.washington.edu> | 2011-03-18 03:51:35 +0000 |
commit | 7b363e5a0a4573dbe0469b3b9419f4cfd7e75e12 (patch) | |
tree | ecf61ae5bc7548ab3c90864d02fc4ac925950fde | |
parent | 719b854c559d4d696ab8055c03371a3049419543 (diff) |
Changed a few things in about menu
-rw-r--r-- | src/tesseract/TesseractUI.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/tesseract/TesseractUI.java b/src/tesseract/TesseractUI.java index e5a4ad3..ced55ce 100644 --- a/src/tesseract/TesseractUI.java +++ b/src/tesseract/TesseractUI.java @@ -429,8 +429,10 @@ public class TesseractUI extends JFrame { public void actionPerformed(ActionEvent e) { JOptionPane.showMessageDialog( null, "Tank:\n" + + "arrows = turret aim up, down, left, right\n" + "a = left\nb = right\n" + "w = forward\ns = backup\n\n" + + "Blimp:\n" + "arrows = steer up, down, left, right\n" + "w = forward\na = roll left\nd = roll right\n" + @@ -438,13 +440,13 @@ public class TesseractUI extends JFrame { "TO FIRE ON BOTH = space"); } }); - final JMenuItem infoMsg = new JMenuItem("Information"); + final JMenuItem infoMsg = new JMenuItem("RC Information"); infoMsg.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { JOptionPane.showMessageDialog( null, - "This program allows the user\n" + - "to send the RC object to another\n" + + "The RC OBject menu allows the user\n" + + "to send an RC object to another\n" + "world and control it remotely"); } }); |