Skip to content

Commit

Permalink
Fixed config name and values
Browse files Browse the repository at this point in the history
  • Loading branch information
ozkriff committed Mar 5, 2014
1 parent b2373c2 commit 911dd45
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions conf_visualizer.json
@@ -1,6 +1,6 @@
{
"screen_size": {
"w": 200,
"h": 150
"w": 640,
"h": 480
}
}
2 changes: 1 addition & 1 deletion visualizer/visualizer.rs
Expand Up @@ -172,7 +172,7 @@ pub struct Visualizer<'a> {
impl<'a> Visualizer<'a> {
pub fn new() -> ~Visualizer {
let players_count = 2;
let win_size = read_win_size("config.json");
let win_size = read_win_size("conf_visualizer.json");
let win = init_win(win_size);
load_gl_funcs_with(glfw::get_proc_address);
init_opengl();
Expand Down

0 comments on commit 911dd45

Please sign in to comment.