cleanup: ModeCGI is unused - chess-puzzles - chess puzzle book generator
 (HTM) git clone git://git.codemadness.org/chess-puzzles
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit c7fb7a700cbaa565d988cfb7e49f25c85159648f
 (DIR) parent aba286b23210523ed76e012d608c3e09c65e9dad
 (HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Tue, 22 Jul 2025 15:14:03 +0200
       
       cleanup: ModeCGI is unused
       
       Diffstat:
         M fen.c                               |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/fen.c b/fen.c
       @@ -20,7 +20,7 @@
        #define SETFGCOLOR(r,g,b)    printf("\x1b[38;2;%d;%d;%dm", r, g, b)
        #define SETBGCOLOR(r,g,b)    printf("\x1b[48;2;%d;%d;%dm", r, g, b)
        
       -enum outputmode { ModeInvalid = 0, ModeASCII, ModeCGI, ModeFEN, ModePGN,
       +enum outputmode { ModeInvalid = 0, ModeASCII, ModeFEN, ModePGN,
                          ModeTTY, ModeSVG, ModeSpeak };
        enum outputmode outputmode = ModeSVG; /* default is SVG */