diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-05-28 21:19:55 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-05-28 21:19:55 -0700 |
commit | ef033e39c170fe272a956b1417f217a0d3cce29c (patch) | |
tree | 0ca08ba1614e87cee73f4904ea362928565b2531 /stateview.c | |
parent | 632c82bd63a13da242c90a5d93dfe7482a0bebe6 (diff) | |
parent | 6817ef558d165b50a9b08a337dd93c4f1f46304e (diff) |
Merge windows branch with latest changes
Diffstat (limited to 'stateview.c')
-rw-r--r-- | stateview.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/stateview.c b/stateview.c index ee34407..0d2286d 100644 --- a/stateview.c +++ b/stateview.c @@ -53,6 +53,7 @@ void handle_joy_dpad(int joystick, int dpadnum, uint8_t value) } tern_node * config; +int headless = 0; int main(int argc, char ** argv) { @@ -87,7 +88,7 @@ int main(int argc, char ** argv) vdp_context context; render_init(width, height, "GST State Viewer", 60, 0); - init_vdp_context(&context); + init_vdp_context(&context, 0); vdp_load_gst(&context, state_file); vdp_run_to_vblank(&context); vdp_print_sprite_table(&context); |