Fix starting number during listing being 0 instead of 1.

This commit is contained in:
Gabriel Bjørnager Jensen 2021-02-11 10:28:11 +01:00
parent da27d48ef0
commit b11a5bc460
No known key found for this signature in database
GPG key ID: 21B622DB91036EFD

View file

@ -17,7 +17,7 @@
std::exit(EXIT_SUCCESS);
}
else if(std::strcmp(argv[0x1],"--list") == 0x0) {
for(unsigned long long num = 0x0;;++num) {
for(unsigned long long num = 0x1;;++num) {
this->printresult(num);
std::this_thread::sleep_for(std::chrono::seconds(0x1));
}