diff options
author | Tim Angus <tim@ngus.net> | 2002-08-15 23:58:38 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2002-08-15 23:58:38 +0000 |
commit | a3e193fd9d2e7149742b63b0c8201083430aa622 (patch) | |
tree | 72114ab214d8677ea74cf56577918409f9a3658b /src/ui | |
parent | 4751be14bbdf7b4cb04aa1ac589afd449ba85a38 (diff) |
* Bugfix to non-implemented infopane error
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/ui_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/ui_main.c b/src/ui/ui_main.c index f02c3411..83a9d27b 100644 --- a/src/ui/ui_main.c +++ b/src/ui/ui_main.c @@ -1048,7 +1048,7 @@ tremInfoPane_t *UI_FindInfoPaneByName( const char *name ) //create a dummy infopane demanding the user write the infopane uiInfo.tremInfoPanes[ i ].name = String_Alloc( name ); - strncpy( uiInfo.tremInfoPanes[ i ].text, "Not implemented.\n\nui/infopanes.def", MAX_INFOPANE_TEXT ); + strncpy( uiInfo.tremInfoPanes[ i ].text, "Not implemented.\n\nui/infopanes.def\n", MAX_INFOPANE_TEXT ); Q_strcat( uiInfo.tremInfoPanes[ i ].text, MAX_INFOPANE_TEXT, String_Alloc( name ) ); uiInfo.tremInfoPaneCount++; |