From 840ed1a3d8336a7198088a765cce78180b60d43b Mon Sep 17 00:00:00 2001 From: nick black Date: Fri, 9 Jul 2021 01:14:20 -0400 Subject: [PATCH] remove all uses of NCSTYLE_STANDOUT --- src/poc/direct.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/poc/direct.c b/src/poc/direct.c index b9b54dec1..a8ab5ec55 100644 --- a/src/poc/direct.c +++ b/src/poc/direct.c @@ -27,11 +27,11 @@ int main(void){ fflush(stdout); int ret = 0; ret |= ncdirect_set_fg_rgb(n, 0xff8080); - ret |= ncdirect_on_styles(n, NCSTYLE_STANDOUT); + ret |= ncdirect_on_styles(n, NCSTYLE_BOLD); printf(" erp erp \n"); ret |= ncdirect_set_fg_rgb(n, 0x80ff80); printf(" erp erp \n"); - ret |= ncdirect_off_styles(n, NCSTYLE_STANDOUT); + ret |= ncdirect_off_styles(n, NCSTYLE_BOLD); printf(" erp erp \n"); ret |= ncdirect_set_fg_rgb(n, 0xff8080); printf(" erp erp \n");