Advertisement

Changing SDL_App to whatever...

Started by January 11, 2005 06:06 PM
2 comments, last by Thrust 19 years, 8 months ago
Hi, I just checked the SDL docs on www.libsdl.org for the way to change the name but is there a way to do it without setting the icon for the game as im using DevC++ and it already chooses the Icon?
Mark St. Jean - OwnerWastedInkVwmaggotwV@Yahoo.com
What I think you are talking about is changing the class name? It is by default SDL_app and it cannot be changed. However, you can change the title of the window with SDL_WM_SetCaption( "Your Title", 0 ); and it should not change the icon.
Advertisement
did you mean
SDL_WM_SetCaption("your title goes here", NULL);

?
- stormrunner
Thank you both very much, that was alot easier then I had thought :).

Mark St. Jean - OwnerWastedInkVwmaggotwV@Yahoo.com

This topic is closed to new replies.

Advertisement