diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2018-02-22 14:28:50 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2018-02-22 14:28:50 -0800 |
commit | 7608e85f127faf0e09b1f935654baf57b59f717f (patch) | |
tree | b0cab75d25581b6c57828872e0f00e7733e2dcb5 | |
parent | d8948f3755d0b5bd199d80b60ece460ac61979f0 (diff) |
rototiller: make the sdl video backend the default
Since people are more likely to first run this from a GUI environment,
default to SDL which should work in most situations.
Then if they want they can switch to a linux console and explicitly use
the drm video backend.
-rw-r--r-- | src/rototiller.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rototiller.c b/src/rototiller.c index d09438e..5d7bb0d 100644 --- a/src/rototiller.c +++ b/src/rototiller.c @@ -29,7 +29,7 @@ * just two pages we end up twiddling thumbs until the vsync arrives. */ #define DEFAULT_MODULE "roto32" -#define DEFAULT_VIDEO "drm" +#define DEFAULT_VIDEO "sdl" extern fb_ops_t drm_fb_ops; extern fb_ops_t sdl_fb_ops; |