summaryrefslogtreecommitdiff
path: root/include/glfont.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/glfont.h')
-rw-r--r--include/glfont.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/glfont.h b/include/glfont.h
index 072826a..464cd47 100644
--- a/include/glfont.h
+++ b/include/glfont.h
@@ -2,6 +2,7 @@
#define __GLFONT_H__
#include <SDL.h>
+#include <stdarg.h>
#include <BString.h>
#include <Color.h>
#include <Handle.h>
@@ -17,7 +18,9 @@ namespace mogltk {
void putentry(Uint16, Color = Color(255, 255, 255, 255));
void putchar(char, Color = Color(255, 255, 255, 255));
void newline(void);
- int printf(const String &, ...);
+ int printf(const ugly_string &, ...);
+ int printf(const char *, ...);
+ int printf(const ugly_string &, va_list);
void setcolor(Color);
void setshadow(int);
int getchar(char) const;