summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2006-05-29 12:17:44 +0000
committerNils Wallménius <nils@rockbox.org>2006-05-29 12:17:44 +0000
commit3f84575d26b9012499916bd4fa4ad9ee48f1ddd7 (patch)
tree6d3d7bf4e64adf46adb7ecf7977e84e83d122a8c
parent70a33127db8f0fa15fe8229641f50ea0c6cf8719 (diff)
downloadrockbox-3f84575d26b9012499916bd4fa4ad9ee48f1ddd7.tar.gz
rockbox-3f84575d26b9012499916bd4fa4ad9ee48f1ddd7.zip
Use button macros in button map and add newer targets
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10014 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--manual/plugins/main.tex2
-rw-r--r--manual/plugins/pong.tex29
2 files changed, 20 insertions, 11 deletions
diff --git a/manual/plugins/main.tex b/manual/plugins/main.tex
index e00aa998f8..fc241c786a 100644
--- a/manual/plugins/main.tex
+++ b/manual/plugins/main.tex
@@ -42,7 +42,7 @@ will carry on playing whilst plugins are being run.
42 42
43\opt{h1xx,h300,ipodcolor,ipodnano}{\input{plugins/pacbox.tex}} 43\opt{h1xx,h300,ipodcolor,ipodnano}{\input{plugins/pacbox.tex}}
44 44
45\opt{recorder,recorderv2fm,ondio,h1xx,h300,IPOD_4G_PAD}{\input{plugins/pong.tex}} 45\opt{HAVE_LCD_BITMAP}{\input{plugins/pong.tex}}
46 46
47\opt{recorder,recorderv2fm,ondio,h1xx,h300,IPOD_4G_PAD}{\input{plugins/rockblox.tex}} 47\opt{recorder,recorderv2fm,ondio,h1xx,h300,IPOD_4G_PAD}{\input{plugins/rockblox.tex}}
48 48
diff --git a/manual/plugins/pong.tex b/manual/plugins/pong.tex
index 74c74eb67e..fda8f0fca8 100644
--- a/manual/plugins/pong.tex
+++ b/manual/plugins/pong.tex
@@ -4,20 +4,29 @@ Pong is a simple two player ``tennis game''. Whenever a player misses the ball t
4 4
5\begin{table} 5\begin{table}
6 \begin{btnmap}{}{} 6 \begin{btnmap}{}{}
7 \opt{recorder,recorderv2fm}{F1}\opt{ondio}{LEFT}\opt{h1xx,h300}{UP} 7 \opt{RECORDER_PAD}{\ButtonFOne}
8 \opt{ipodcolor,ipodnano}{MENU} 8 \opt{ONDIO_PAD}{\ButtonLeft}
9 \opt{IRIVER_H100_PAD,IRIVER_H300_PAD,IAUDIO_X5_PAD}{\ButtonUp}
10 \opt{IPOD_4G_PAD}{\ButtonMenu}
9 & Left player up\\ 11 & Left player up\\
10 \opt{recorder,recorderv2fm,ipodcolor,ipodnano}{LEFT} 12 \opt{RECORDER_PAD,IPOD_4G_PAD}{\ButtonLeft}
11 \opt{ondio}{MODE}\opt{h1xx,h300}{DOWN} 13 \opt{ONDIO_PAD}{\ButtonMenu}
14 \opt{IRIVER_H100_PAD,IRIVER_H300_PAD,IAUDIO_X5_PAD}{\ButtonDown}
12 & Left player down\\ 15 & Left player down\\
13 \opt{recorder,recorderv2fm}{F3}\opt{ondio}{UP} 16 \opt{RECORDER_PAD}{\ButtonFThree}
14 \opt{h1xx,h300}{PLAY}\opt{ipodcolor,ipodnano}{RIGHT} 17 \opt{ONDIO_PAD}{\ButtonUp}
18 \opt{IRIVER_H100_PAD,IRIVER_H300_PAD}{\ButtonOn}
19 \opt{IPOD_4G_PAD}{\ButtonRight}
20 \opt{IAUDIO_X5_PAD}{\ButtonRec}
15 & Right player up\\ 21 & Right player up\\
16 \opt{recorder,recorderv2fm}{RIGHT}\opt{ondio}{DOWN} 22 \opt{RECORDER_PAD}{\ButtonRight}
17 \opt{h1xx,h300}{A-B}\opt{ipodcolor,ipodnano}{PLAY} 23 \opt{ONDIO_PAD}{\ButtonDown}
24 \opt{IRIVER_H100_PAD,IRIVER_H300_PAD}{\ButtonMode}
25 \opt{IPOD_4G_PAD,IAUDIO_X5_PAD}{\ButtonPlay}
18 & Right player down\\ 26 & Right player down\\
19 \opt{recorder,recorderv2fm,h1xx,h300}{STOP}\opt{ondio}{OFF} 27 \opt{RECORDER_PAD,ONDIO_PAD,IRIVER_H100_PAD,IRIVER_H300_PAD}{\ButtonOff}
20 \opt{ipodcolor,ipodnano}{SELECT} 28 \opt{IPOD_4G_PAD}{\ButtonSelect}
29 \opt{IAUDIO_X5_PAD}{\ButtonPower}
21 & Quit\\ 30 & Quit\\
22 \end{btnmap} 31 \end{btnmap}
23\end{table} 32\end{table}