X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2Fapp.cpp;h=4cc742ffede2ad5db34617b69b28570d307209b7;hb=d1c5d306f2a968c0b7b08e24991cfb956f103755;hp=2b1a494efadbd20424a22886b57e93c6c2828478;hpb=a7eb097d4c1513108b5588eb2e99014ace85c9c5;p=blank.git diff --git a/src/app/app.cpp b/src/app/app.cpp index 2b1a494..4cc742f 100644 --- a/src/app/app.cpp +++ b/src/app/app.cpp @@ -81,7 +81,7 @@ void HeadlessApplication::RunS(size_t n, size_t t) { for (size_t i = 0; HasState() && i < n; ++i) { Loop(t); std::cout << '.'; - if (i % 16 == 15) { + if (i % 32 == 31) { std::cout << std::setfill(' ') << std::setw(5) << std::right << (i + 1) << std::endl; } else { std::cout << std::flush; @@ -328,7 +328,7 @@ void AssetLoader::LoadBlockTypes( BlockType type; type.Read(in, snd_index, tex_index, shapes); in.Skip(Token::SEMICOLON); - reg.Add(type); + reg.Add(std::move(type)); } }