diff --git a/include/myglFont.h b/include/myglFont.h index 28bedf2..2d711e7 100644 --- a/include/myglFont.h +++ b/include/myglFont.h @@ -18,7 +18,7 @@ public: bool BuildFont(const char*); bool FreeFont(); void Print(int, int, const char*, unsigned int = 0); - bool Status(); + bool Loaded(); void SetScreenDimensions(short, short); void SetScreenWidth(short); void SetScreenHeight(short); diff --git a/src/myglFont.cpp b/src/myglFont.cpp index 3a34492..c87ed35 100644 --- a/src/myglFont.cpp +++ b/src/myglFont.cpp @@ -110,7 +110,7 @@ void GLFontClass::Print(int x, int y, const char* str, unsigned int set) } } -bool GLFontClass::Status() +bool GLFontClass::Loaded() { return status; }