MantisBT - Zandronum |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0001143 | Zandronum | [All Projects] Bug | public | 2012-10-25 06:14 | 2018-09-30 20:16 |
|
Reporter | unknownna | |
Assigned To | Watermelon | |
Priority | low | Severity | text | Reproducibility | always |
Status | closed | Resolution | fixed | |
Platform | | OS | | OS Version | |
Product Version | 1.0 | |
Target Version | | Fixed in Version | 1.1 | |
|
Summary | 0001143: "=== SKULLTAG | SERVER ===" displayed in server console |
Description | Attached screenshot. Shouldn't it be Zandronum? |
Steps To Reproduce | 1. zandronum -host |
Additional Information | |
Tags | No tags attached. |
Relationships | parent of | 0001399 | closed | Torr Samaho | 2 occurencies of S K U L L T A G in the code. |
|
Attached Files | screenshot.png (13,638) 2012-10-25 06:14 /tracker/file_download.php?file_id=839&type=bug

|
|
Issue History |
Date Modified | Username | Field | Change |
2012-10-25 06:14 | unknownna | New Issue | |
2012-10-25 06:14 | unknownna | File Added: screenshot.png | |
2012-10-25 06:15 | unknownna | Status | new => confirmed |
2013-06-08 19:07 | Watermelon | Note Added: 0006399 | |
2013-06-08 19:07 | Watermelon | Assigned To | => Watermelon |
2013-06-08 19:07 | Watermelon | Status | confirmed => needs review |
2013-06-08 21:09 | Dusk | Note Added: 0006401 | |
2013-07-12 15:57 | Dusk | Note View State: 0006401: public | |
2013-07-12 15:58 | Dusk | Note Edited: 0006401 | bug_revision_view_page.php?bugnote_id=6401#r3680 |
2013-07-12 16:12 | Dusk | Note Edited: 0006401 | bug_revision_view_page.php?bugnote_id=6401#r3681 |
2013-07-12 16:13 | Dusk | Note Edited: 0006401 | bug_revision_view_page.php?bugnote_id=6401#r3682 |
2013-07-12 16:13 | Dusk | Note Edited: 0006401 | bug_revision_view_page.php?bugnote_id=6401#r3683 |
2013-07-14 19:14 | Torr Samaho | Note Added: 0006632 | |
2013-07-14 19:26 | Torr Samaho | Note Added: 0006633 | |
2013-07-14 19:27 | Torr Samaho | Status | needs review => resolved |
2013-07-14 19:27 | Torr Samaho | Fixed in Version | => 1.1 |
2013-07-15 13:15 | Dusk | Relationship added | parent of 0001399 |
2015-03-22 18:01 | Edward-san | Resolution | open => fixed |
2018-09-30 20:16 | Blzut3 | Status | resolved => closed |
Notes |
|
|
|
|
(0006401)
|
Dusk
|
2013-06-08 21:09
(edited on: 2013-07-12 16:13) |
|
Maybe something like this to make it use the GAMENAME macro and keep it more faithful to the original?
FString itemtext = "=== ", capsname = GAMENAME;
capsname.ToUpper( );
for ( ULONG i = 0; i < capsname.Len( ); ++i )
{
itemtext += capsname[i];
itemtext += " ";
}
itemtext += "| S E R V E R ===";
SetDlgItemText( hDlg, IDC_CONSOLEBOX, itemtext.GetChars( ));
Or would it be a bit overkill? :P
|
|
|
|
I think that's a bit overkill ;), but using GAMENAME is a good point. |
|
|
|
Since this is a tiny issue, I went ahead and made a simple fix using GAMENAME that slightly changes the style of the message (that was inconsistent with all other messages anyway). |
|