Added support for (GL|SW)VID_SetCaption to the MorphOS port.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2485 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
802821be99
commit
900d16ee65
2 changed files with 11 additions and 0 deletions
|
@ -656,3 +656,9 @@ void GLVID_HandlePause (qboolean pause)
|
|||
void Sys_SendKeyEvents(void)
|
||||
{
|
||||
}
|
||||
|
||||
void GLVID_SetCaption(char *caption)
|
||||
{
|
||||
SetWindowTitles(window, caption, (void *)-1);
|
||||
}
|
||||
|
||||
|
|
|
@ -247,3 +247,8 @@ void Sys_SendKeyEvents(void)
|
|||
{
|
||||
}
|
||||
|
||||
void SWVID_SetCaption(char *caption)
|
||||
{
|
||||
SetWindowTitles(window, caption, (void *)-1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue