diff options
author | Victor Gamper <victor@erika-imac.fritz.box> | 2020-01-26 13:20:28 +0100 |
---|---|---|
committer | Victor Gamper <victor@erika-imac.fritz.box> | 2020-01-26 13:20:28 +0100 |
commit | dac6b72f8f5fc9ecf564412927dcff7a04d37dc0 (patch) | |
tree | d51b5d09f913cda37243be565b95e1a62dd70588 /BitmapFontRenderer.c | |
parent | 06a678629c99293a642af7d3aa39c20ea28e3d4d (diff) | |
download | c-catch-dac6b72f8f5fc9ecf564412927dcff7a04d37dc0.tar.gz c-catch-dac6b72f8f5fc9ecf564412927dcff7a04d37dc0.zip |
Added birds and a readme file
Diffstat (limited to 'BitmapFontRenderer.c')
-rw-r--r-- | BitmapFontRenderer.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/BitmapFontRenderer.c b/BitmapFontRenderer.c index 05e6bce..4232afd 100644 --- a/BitmapFontRenderer.c +++ b/BitmapFontRenderer.c @@ -713,7 +713,6 @@ void Font_DrawString(SDL_Surface* surface, int x, int y, char* string) { sdl_rect_output.y = y; int length = strlen(string); - printf("%d\n", length); for(int i = 0; i<length;i++) { // find the offset of the letter @@ -805,3 +804,7 @@ void Font_DrawString(SDL_Surface* surface, int x, int y, char* string) { sdl_rect_output.x+=LETTER_WIDTH; } } + +void Font_SetColor(unsigned char r, unsigned char g, unsigned char b) { + +} |