diff options
Diffstat (limited to 'include/ui.h')
-rw-r--r-- | include/ui.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ui.h b/include/ui.h index a4fed3e..2a7518f 100644 --- a/include/ui.h +++ b/include/ui.h @@ -131,12 +131,11 @@ namespace ui { void setFontSize(unsigned int size); void setFontColor(unsigned char r,unsigned char g,unsigned char b, unsigned char a); - /* * Draw a centered string. */ - float putStringCentered(const float x,const float y,const char *s); + float putStringCentered(const float x,const float y,std::string s); /* * Draws a formatted string at the given coordinates. @@ -156,6 +155,7 @@ namespace ui { void closeBox(); void waitForDialog(void); + void drawPage( std::string path ); /* * Draws a larger string in the center of the screen. Drawing is done inside this function. */ |