diff options
Diffstat (limited to 'xd.c')
-rw-r--r-- | xd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 { |