ZealOS/src/HomeLocalize.ZC

23 lines
626 B
HolyC
Raw Normal View History

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
local_time_offset = 0 * 60 * 60 * CDATE_FREQ; //Do daylight savings by hand
2020-02-15 20:01:48 +00: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
mouse_hard.scale.x = 0.7;
mouse_hard.scale.y = 0.7;
mouse_hard.scale.z = 1.0; //wheel
2020-02-15 20:01:48 +00:00
//don't change these
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