summaryrefslogtreecommitdiff
path: root/BitmapFontRenderer.c
diff options
context:
space:
mode:
Diffstat (limited to 'BitmapFontRenderer.c')
-rw-r--r--BitmapFontRenderer.c5
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) {
+
+}