From b12758fe5355b62285675628a043fe0625fff47b Mon Sep 17 00:00:00 2001 From: Christian Groessler Date: Tue, 16 Feb 2021 14:07:47 +0100 Subject: [PATCH] include/atari.h: fix typo in _setcolor() prototype --- include/atari.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/atari.h b/include/atari.h index f5916a284..86c7b9706 100644 --- a/include/atari.h +++ b/include/atari.h @@ -6,10 +6,11 @@ /* */ /* */ /* */ -/* (C) 2000-2019 Mark Keates */ +/* (C) 2000-2021 Mark Keates */ /* Freddy Offenga */ /* Christian Groessler */ /* Bill Kendrick */ +/* et al. */ /* */ /* */ /* This software is provided 'as-is', without any expressed or implied */ @@ -219,7 +220,7 @@ /* Color register functions */ /*****************************************************************************/ -extern void __fastcall__ _setcolor (unsigned char color_reg, unsigned char hue, unsigned char luminace); +extern void __fastcall__ _setcolor (unsigned char color_reg, unsigned char hue, unsigned char luminance); extern void __fastcall__ _setcolor_low (unsigned char color_reg, unsigned char color_value); extern unsigned char __fastcall__ _getcolor (unsigned char color_reg);