mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-02-01 20:30:57 +00:00
Added VID_SetCaption (title) support for little more portability.
This commit is contained in:
parent
5a1ef7ca3d
commit
0e2bc6adb3
2 changed files with 11 additions and 0 deletions
|
@ -3443,3 +3443,9 @@ void VID_MenuKey (int key)
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
void VID_SetCaption (char *text)
|
||||
{
|
||||
SetWindowText(mainwindow,(LPSTR) text);
|
||||
}
|
||||
|
||||
|
|
|
@ -1956,3 +1956,8 @@ void VID_MenuKey (int key)
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
void VID_SetCaption (char *text)
|
||||
{
|
||||
SetWindowText(mainwindow,(LPSTR) text);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue