summaryrefslogtreecommitdiff
path: root/xd.c
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2018-10-18 14:18:16 +0000
committerIan C <ianc@noddybox.co.uk>2018-10-18 14:18:16 +0000
commita1e32c76a145f923ada1b97deeea370177011ee3 (patch)
treea3ac4bd74508666af30a09edd144ef577ab622d7 /xd.c
parent6681cf2d0bcbca5785c0173f4ef5065423aba1a4 (diff)
Small tweaks to Catwalk. Was going to add move but can't with the current
implementation.
Diffstat (limited to 'xd.c')
-rw-r--r--xd.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/xd.c b/xd.c
index 47daed2..cdba2ca 100644
--- a/xd.c
+++ b/xd.c
@@ -262,7 +262,7 @@ static DemoInfo demotbl[NO_DEMOS]=
UsesPixmap
},
{
- "Catwalk trench (LMB to change draw mode)",
+ "Catwalk trench (RMB to change draw mode)",
CatwalkDemo,
UsesPixmap
},
@@ -3825,8 +3825,6 @@ static void CatwalkDemo(void)
static Obj3D *catwalk;
- static int move=0;
-
static int drawmode = MODE_EDGE;
static int init=FALSE;
@@ -3870,7 +3868,7 @@ static void CatwalkDemo(void)
init=TRUE;
}
- if (mouse_b&Button1Mask)
+ if (mouse_b&Button3Mask)
{
static time_t bounce=0;