From b38b27007edc9d5f012c4fd124646c5043a71a2d Mon Sep 17 00:00:00 2001 From: Ian C Date: Thu, 25 Oct 2018 07:00:58 +0000 Subject: Small tweak to mouselook in road demo for smaller windows. --- xd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xd.c b/xd.c index 29419fb..e682773 100644 --- a/xd.c +++ b/xd.c @@ -4436,8 +4436,8 @@ static void RoadDemo(void) if (mouselook) { - ang_y = -(mouse_x - centre_x); - ang_x = mouse_y - centre_y; + ang_y = -(mouse_x - centre_x) * 2; + ang_x = (mouse_y - centre_y) * 2; } else { -- cgit v1.2.3