diff options
author | Chris Robinson <[email protected]> | 2019-06-30 20:43:19 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-06-30 22:02:40 -0700 |
commit | 0aeaf061736e28a803fb46d25860a07b3d45bb05 (patch) | |
tree | 23596c3824400b184a89ff0295dfd0ac32204b6b | |
parent | 7affe3d78d5473027104cb3b3008d5afb7ac47ea (diff) |
Properly set DisableVideo to true
-rw-r--r-- | examples/alffplay.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/alffplay.cpp b/examples/alffplay.cpp index 8016fd00..f4d50d52 100644 --- a/examples/alffplay.cpp +++ b/examples/alffplay.cpp @@ -1861,7 +1861,7 @@ int main(int argc, char *argv[]) } } else if(strcmp(argv[fileidx], "-novideo") == 0) - DisableVideo = false; + DisableVideo = true; else break; } |