From ebd13810307768b422626d91253018e515d8ba06 Mon Sep 17 00:00:00 2001 From: karri Date: Thu, 29 Dec 2022 21:55:25 +0200 Subject: [PATCH] Use same style in comments --- src/sp65/pcx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sp65/pcx.c b/src/sp65/pcx.c index 18a60276d..e6d99b30b 100644 --- a/src/sp65/pcx.c +++ b/src/sp65/pcx.c @@ -156,7 +156,7 @@ static PCXHeader* ReadPCXHeader (FILE* F, const char* Name) ** - one plane with either 1, 4 or 8 bits per pixel ** - three planes with 8 bits per pixel ** - four planes with 8 bits per pixel (does this exist?) - **/ + */ if (!((P->BPP == 1 && P->Planes == 1) || (P->BPP == 4 && P->Planes == 1) || (P->BPP == 8 && (P->Planes == 1 || P->Planes == 3 || P->Planes == 4)))) { @@ -421,7 +421,7 @@ Bitmap* ReadPCXFile (const Collection* A) /* One plane means we have a palette which is either part of the header ** or follows. - **/ + */ if (P->PalInfo == 0) { /* Create the monochrome palette */