From 1e403123e1af15c8c0af15c2af56a7f5b5ab64fc Mon Sep 17 00:00:00 2001 From: nick black Date: Sat, 18 Jan 2020 21:17:05 -0500 Subject: [PATCH] s/notcurses_render/demo_render/g pass --- doc/man/man1/notcurses-demo.1.md | 4 ++-- src/demo/demo.c | 2 +- src/demo/fallin.c | 2 +- src/demo/unicodeblocks.c | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/man/man1/notcurses-demo.1.md b/doc/man/man1/notcurses-demo.1.md index f1bbc7d03..cbf7090e9 100644 --- a/doc/man/man1/notcurses-demo.1.md +++ b/doc/man/man1/notcurses-demo.1.md @@ -24,7 +24,7 @@ The demonstrations include: * (b)oxes—pulsating boxes with a transparent center * (c)hunli—the strongest woman in the world * (e)agle—they took some time off my life, back in the day -* (f)allin—the screen falls apart under heavy blows +* (f)allin'—the screen falls apart under heavy blows * (g)rid—a gradient of color lain atop a great grid * (j)ungle—low-bandwidth color cycling reveals ancient ruins * (l)uigi-a dashing Apennine plumber in a world of fire @@ -69,7 +69,7 @@ Proper display requires: # BUGS If notcurses is built without FFmpeg, the following demos will fail immedaitely when specified: **xray**, -**eagle**, **chunli**, **fallin**, **view**, **outro**. +**eagle**, **chunli**, **fallin'**, **view**, **outro**. # AUTHORS diff --git a/src/demo/demo.c b/src/demo/demo.c index 9db7fc964..2c15c2cb7 100644 --- a/src/demo/demo.c +++ b/src/demo/demo.c @@ -107,7 +107,7 @@ static struct { { "chunli", chunli_demo, }, { NULL, NULL, }, { "eagle", eagle_demo, }, - { "fallin", fallin_demo, }, + { "fallin'", fallin_demo, }, { "grid", grid_demo, }, { NULL, NULL, }, { "intro", intro, }, diff --git a/src/demo/fallin.c b/src/demo/fallin.c index edb20f03e..62b88741c 100644 --- a/src/demo/fallin.c +++ b/src/demo/fallin.c @@ -8,7 +8,7 @@ static int patentpulser(struct notcurses* nc, struct ncplane* ncp, void* curry){ (void)ncp; (void)curry; - if(notcurses_render(nc)){ + if(demo_render(nc)){ return -1; } bool donecheck; diff --git a/src/demo/unicodeblocks.c b/src/demo/unicodeblocks.c index 3285c0efa..23ca1698d 100644 --- a/src/demo/unicodeblocks.c +++ b/src/demo/unicodeblocks.c @@ -13,7 +13,7 @@ static int fade_block(struct notcurses* nc, struct ncplane* nn, const struct timespec* subdelay){ //int ret = ncplane_fadein(nn, subdelay, demo_fader); - int ret = notcurses_render(nc); + int ret = demo_render(nc); nanosleep(subdelay, NULL); ncplane_destroy(nn); return ret;