fix narrowing conversion

This commit is contained in:
Chris Cromer 2019-05-01 17:54:43 -04:00
parent 0426daffe5
commit f5f3ee3155
Signed by: cromer
GPG Key ID: 39CC813FF3C8708A
2 changed files with 61 additions and 61 deletions

View File

@ -415,7 +415,7 @@ void BPicture::absoluteLine(byte **data)
**************************************************************************/
void BPicture::plotPattern(byte x, byte y)
{
static char circles[][15] = { /* agi circle bitmaps */
static unsigned char circles[][15] = { /* agi circle bitmaps */
{0x80},
{0xfc},
{0x5f, 0xf4},

View File

@ -495,7 +495,7 @@ void Picture::absoluteLine(struct picCodeNode **temp)
**************************************************************************/
void Picture::plotPattern(byte x, byte y)
{
static char circles[][15] = { /* agi circle bitmaps */
static unsigned char circles[][15] = { /* agi circle bitmaps */
{0x80},
{0xfc},
{0x5f, 0xf4},