From 86b526bdcb8bfe05b236724f0c9c4d4171b820e5 Mon Sep 17 00:00:00 2001 From: nick black Date: Tue, 28 Apr 2020 21:56:51 -0400 Subject: [PATCH] demo: reset stats following initialization #522 --- src/demo/demo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/demo/demo.c b/src/demo/demo.c index 0070c4031..0e693e1b3 100644 --- a/src/demo/demo.c +++ b/src/demo/demo.c @@ -522,6 +522,7 @@ int main(int argc, char** argv){ if(notcurses_render(nc)){ goto err; } + notcurses_reset_stats(nc, NULL); if(ext_demos(nc, spec, ignore_failures) == NULL){ goto err; }