-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
31 lines (24 loc) · 760 Bytes
/
config.lua
File metadata and controls
31 lines (24 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
--config.lua
--Note: use `1` or `0` not `true` or `false`
--Standard resolutions:
-- 640x480
--
--Note: there may be some scaling problems with higher resolutions.
--with non 4:3 ratio resolutions
--
--Do not choose a size smaller then 640x480, things break badly !
screen_width=640;
screen_height=480;
fullscreen=0; --1= Fullscreen, hardware acceleration (Fast !)
--0= Windowed, software only (Slow !)
double_buffer=0; --Prevents graphical tearing, Slows down program drawing.
--If you lack a proper graphics card then choose 0, else 1
--If its too slow after that, theres nothing you can do ...
--Volume: Between 0% and 100%,recommended 50%
sound_volume=75;
music_volume=75;
--input_mode
-- 0 keyboard
-- 1 joystick
-- 2 both
input_mode=2