4 Commits

Author SHA1 Message Date
rexy712
af6734f8ef version bump 2019-05-18 08:02:00 -07:00
rexy712
b49c9bd0bb fixed -d 2019-05-18 08:01:38 -07:00
Rexy712
ece4b9668d Merge branch 'master' of gitlab.com:rexy712/roflcat 2019-05-13 18:44:10 -07:00
Rexy712
0b6e86ad02 Added TODO 2019-05-13 18:43:53 -07:00
2 changed files with 5 additions and 6 deletions

View File

@@ -297,12 +297,11 @@ cmd_args process_cmd_args(int argc, char** argv){
ret.freq = atof(argv[next_arg]);
++next_arg;
break;
case SHORT_OPT(IGNORE_ANIMATE):
break;
case SHORT_OPT(IGNORE_DURATION):
if(next_arg != (argc-1)){
++next_arg;
}
if(next_arg == argc)
break;
++next_arg;
case SHORT_OPT(IGNORE_ANIMATE):
break;
default:
//keep parsing after error so we can still properly output requested color style

View File

@@ -34,7 +34,7 @@
#include <chrono> //std::chrono::*
#include <cstdlib> //srand
constexpr const char version_string[] = "roflcat version 1.0";
constexpr const char version_string[] = "roflcat version 1.0.4";
static constexpr size_t constexpr_strlen(const char* str){
size_t i = 0;