mirror of
https://github.com/ZDoom/gzdoom-last-svn.git
synced 2025-06-03 10:41:12 +00:00
* Updated to ZDoom r2562:
- Merged USDF branch into trunk. - Added USDF specs. - Fixed: The check for old incompatible savegames with dialogues was wrong. * Adjusted the SaveVersion number to its accurate value. git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@901 b0f79afe-0144-0410-b225-9a4edf0717df
This commit is contained in:
parent
9b3e28d936
commit
81fa721abc
24 changed files with 1267 additions and 277 deletions
|
@ -376,17 +376,17 @@ void player_t::SetLogNumber (int num)
|
|||
data[length]=0;
|
||||
SetLogText (data);
|
||||
delete[] data;
|
||||
|
||||
// Print log text to console
|
||||
AddToConsole(-1, TEXTCOLOR_GOLD);
|
||||
AddToConsole(-1, LogText);
|
||||
AddToConsole(-1, "\n");
|
||||
}
|
||||
}
|
||||
|
||||
void player_t::SetLogText (const char *text)
|
||||
{
|
||||
LogText = text;
|
||||
|
||||
// Print log text to console
|
||||
AddToConsole(-1, TEXTCOLOR_GOLD);
|
||||
AddToConsole(-1, LogText);
|
||||
AddToConsole(-1, "\n");
|
||||
}
|
||||
|
||||
int player_t::GetSpawnClass()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue