diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-05-20 19:05:11 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-05-20 19:05:11 -0700 |
commit | 863ea0b3f8b8879ac3092f391a68dc95d0d04de2 (patch) | |
tree | 51a87b4b49eb235fff95efee88dbed27eaba3878 /stateview.c | |
parent | 265a11e776d9708483024f48a9e0eaaf6686d00b (diff) |
Upgrade to SDL 2.0 and drop support for the non-OpenGL render path
Diffstat (limited to 'stateview.c')
-rw-r--r-- | stateview.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stateview.c b/stateview.c index 713c390..0d2286d 100644 --- a/stateview.c +++ b/stateview.c @@ -87,7 +87,7 @@ int main(int argc, char ** argv) height = height < 240 ? (width/320) * 240 : height; vdp_context context; - render_init(width, height, "GST State Viewer", 60, 0, 0); + render_init(width, height, "GST State Viewer", 60, 0); init_vdp_context(&context, 0); vdp_load_gst(&context, state_file); vdp_run_to_vblank(&context); |