X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fvideo%2Fomapdss%2Fconfig.c;h=a70cd3c8f588eba999373d755592a6082a8b3d19;hb=b3747abbd73fcd789bfecaefde12a42c1a4d5ee9;hp=865b80ad4094848955f5f378bf85cac8beb50d29;hpb=0aab059fdffebbbf5af73cc7549adaf58470d0ec;p=sdl_omap.git diff --git a/src/video/omapdss/config.c b/src/video/omapdss/config.c index 865b80a..a70cd3c 100644 --- a/src/video/omapdss/config.c +++ b/src/video/omapdss/config.c @@ -1,5 +1,5 @@ /* - * (C) notaz, 2010 + * (C) Gražvydas "notaz" Ignotas, 2010 * * This work is licensed under the terms of the GNU LGPL, version 2.1 or later. * See the COPYING file in the top-level directory. @@ -65,7 +65,7 @@ void omapsdl_config(void) if (line == NULL) break; p = line = sskip(line); - if (*p == '#') + if (*p == 0 || *p == '#') continue; if (check_token(&p, "bind")) { @@ -96,4 +96,12 @@ bad: fclose(f); } +void omapsdl_config_from_env(void) +{ + const char *tmp; + + tmp = getenv("SDL_OMAP_VSYNC"); + if (tmp != NULL) + gcfg_force_vsync = atoi(tmp); +}