fix narrowing conversion
This commit is contained in:
parent
0426daffe5
commit
f5f3ee3155
@ -415,7 +415,7 @@ void BPicture::absoluteLine(byte **data)
|
|||||||
**************************************************************************/
|
**************************************************************************/
|
||||||
void BPicture::plotPattern(byte x, byte y)
|
void BPicture::plotPattern(byte x, byte y)
|
||||||
{
|
{
|
||||||
static char circles[][15] = { /* agi circle bitmaps */
|
static unsigned char circles[][15] = { /* agi circle bitmaps */
|
||||||
{0x80},
|
{0x80},
|
||||||
{0xfc},
|
{0xfc},
|
||||||
{0x5f, 0xf4},
|
{0x5f, 0xf4},
|
||||||
|
@ -495,7 +495,7 @@ void Picture::absoluteLine(struct picCodeNode **temp)
|
|||||||
**************************************************************************/
|
**************************************************************************/
|
||||||
void Picture::plotPattern(byte x, byte y)
|
void Picture::plotPattern(byte x, byte y)
|
||||||
{
|
{
|
||||||
static char circles[][15] = { /* agi circle bitmaps */
|
static unsigned char circles[][15] = { /* agi circle bitmaps */
|
||||||
{0x80},
|
{0x80},
|
||||||
{0xfc},
|
{0xfc},
|
||||||
{0x5f, 0xf4},
|
{0x5f, 0xf4},
|
||||||
|
Loading…
Reference in New Issue
Block a user