diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/glut_compatability.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/glut_compatability.cxx b/src/glut_compatability.cxx index b2acfdec4..90d2d80ca 100644 --- a/src/glut_compatability.cxx +++ b/src/glut_compatability.cxx @@ -220,6 +220,10 @@ void glutInitWindowSize(int w, int h) { initw = w; inith = h; } +int glutCreateWindow(char *title) { + return glutCreateWindow((const char*)title); +} + int glutCreateWindow(const char *title) { Fl_Glut_Window *W; if (initpos) { |
