This commit is contained in:
olikraus 2016-04-16 17:47:19 +02:00
parent 010cceb399
commit 8a457b7d97
2 changed files with 4 additions and 2 deletions

View File

@ -4,8 +4,8 @@
#include <stdlib.h>
#include <string.h>
#define CHGR_WIDTH 128
#define CHGR_HEIGHT 64
#define CHGR_WIDTH 96
#define CHGR_HEIGHT 32
unsigned char chgr_bitmap[CHGR_HEIGHT/2][CHGR_WIDTH/2];
unsigned char *chgr_bitmap_pos(unsigned x, unsigned y)

View File

@ -1,3 +1,5 @@
CC = gcc
CFLAGS = -g -Wall -I../../../csrc/.
SRC = $(shell ls ../../../csrc/*.c) $(shell ls ../common/*.c ) main.c