From bdf0186c7fcf8b27a938334c6bbdc0b2c43fd98d Mon Sep 17 00:00:00 2001 From: Adrien Destugues Date: Tue, 6 Oct 2009 12:26:29 +0000 Subject: [PATCH] -Added help about rgb option -Better formatting of the video mode list git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@1061 416bcca6-2ee7-4201-b75f-2eb2f807beb1 --- main.c | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index 7d7ef312..af3c342d 100644 --- a/main.c +++ b/main.c @@ -92,11 +92,20 @@ void Display_syntax(void) printf("\t/tall2 to emulate a video mode with double tall pixels (2x4)\n"); printf("\t/triple to emulate a video mode with triple pixels (3x3)\n"); printf("\t/quadruple to emulate a video mode with quadruple pixels (4x4)\n"); - printf("\t/skin use an alternate file with the menu graphics\n"); + printf("\t/rgb n to reduce RGB precision from 256 to n levels\n"); + printf("\t/skin to use an alternate file with the menu graphics\n"); printf("\t/mode to set a video mode\n\n"); printf("Available video modes:\n\n"); - for (mode_index=0; mode_index= Nb_video_modes) break; + printf("%12s",Mode_label(mode_index + k)); + } + puts(""); + } }