-
Notifications
You must be signed in to change notification settings - Fork 1
/
Bindings.xml
58 lines (58 loc) · 1.25 KB
/
Bindings.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<Bindings>
<Binding name="GB_START" runOnUp="true" header="GNOMEBOYADVANCE">
if keystate == "down" then
GB_UseControl("Start",true)
else
GB_UseControl("Start",false)
end
</Binding>
<Binding name="GB_SELECT" runOnUp="true">
if keystate == "down" then
GB_UseControl("Select",true)
else
GB_UseControl("Select",false)
end
</Binding>
<Binding name="GB_A" runOnUp="true">
if keystate == "down" then
GB_UseControl("A",true)
else
GB_UseControl("A",false)
end
</Binding>
<Binding name="GB_B" runOnUp="true">
if keystate == "down" then
GB_UseControl("B",true)
else
GB_UseControl("B",false)
end
</Binding>
<Binding name="GB_UP" runOnUp="true">
if keystate == "down" then
GB_UseControl("Up",true)
else
GB_UseControl("Up",false)
end
</Binding>
<Binding name="GB_DOWN" runOnUp="true">
if keystate == "down" then
GB_UseControl("Down",true)
else
GB_UseControl("Down",false)
end
</Binding>
<Binding name="GB_LEFT" runOnUp="true">
if keystate == "down" then
GB_UseControl("Left",true)
else
GB_UseControl("Left",false)
end
</Binding>
<Binding name="GB_RIGHT" runOnUp="true">
if keystate == "down" then
GB_UseControl("Right",true)
else
GB_UseControl("Right",false)
end
</Binding>
</Bindings>