Config: Set defaut configuration for video.

This commit is contained in:
Glenn Y. Rolland 2011-02-04 14:56:51 +01:00
parent ba7a54d89c
commit 0b86f69244
1 changed files with 3 additions and 3 deletions

View File

@ -12,10 +12,10 @@ type t = {
let create () =
let config_dir = Printf.sprintf "%s/.justnukeit" ( Unix.getenv "HOME" )
in
{
{ (* default configuration *)
config_dir = config_dir ;
video_width = 0 ;
video_height = 0 ;
video_width = 640 ;
video_height = 480 ;
show_fps = false
}
;;