2020-02-15 20:01:48 +00:00
|
|
|
//Place this file in /Home and change
|
|
|
|
//anything you want.
|
|
|
|
|
|
|
|
//This makes your keyboard fast
|
|
|
|
KbdTypeMatic(0);
|
|
|
|
|
|
|
|
//Set Time Zone
|
2020-04-11 23:19:38 +01:00
|
|
|
local_time_offset = 0 * 60 * 60 * CDATE_FREQ; //Do daylight savings by hand
|
2020-02-15 20:01:48 +00:00
|
|
|
|
2022-10-22 19:12:54 +01:00
|
|
|
//Set screen zoom behaviour
|
|
|
|
gr.continuous_scroll = TRUE;
|
|
|
|
|
2020-02-15 20:01:48 +00:00
|
|
|
//$AN,"",A="mouse_move_scale"$adjust these to set mouse move scale
|
2020-12-23 23:27:18 +00:00
|
|
|
mouse_hard.scale.x = 0.7;
|
|
|
|
mouse_hard.scale.y = 0.7;
|
2020-04-11 23:19:38 +01:00
|
|
|
mouse_hard.scale.z = 1.0; //wheel
|
2020-02-15 20:01:48 +00:00
|
|
|
|
|
|
|
//don't change these
|
2020-04-11 23:19:38 +01:00
|
|
|
mouse_hard.prescale.x = mouse_hard.pos.x / mouse_hard.scale.x;
|
|
|
|
mouse_hard.prescale.y = mouse_hard.pos.y / mouse_hard.scale.y;
|
|
|
|
mouse_hard.prescale.z = mouse_hard.pos.z / mouse_hard.scale.z;
|
2020-02-15 20:01:48 +00:00
|
|
|
|