mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
- Changed ST_Heretic_Init() so it properly updates the
version number on the loading screen. SVN r440 (trunk)
This commit is contained in:
parent
eb175d4f43
commit
05c77ebcb6
1 changed files with 8 additions and 0 deletions
|
@ -68,6 +68,7 @@
|
|||
|
||||
#define TEXT_FONT_HEIGHT 14
|
||||
#define TEXT_FONT_NAME "vga-rom-font.14"
|
||||
#define HERETIC_MINOR_VERSION '3' // Since we're based on Heretic 1.3
|
||||
|
||||
#define THERM_X 14
|
||||
#define THERM_Y 14
|
||||
|
@ -683,6 +684,13 @@ static void ST_Heretic_Init ()
|
|||
}
|
||||
|
||||
Wads.ReadLump (loading_lump, loading_screen);
|
||||
|
||||
// Slap the Heretic minor version on the loading screen. Heretic
|
||||
// did this inside the executable rather than coming with modified
|
||||
// LOADING screens, so we need to do the same.
|
||||
loading_screen[2*160 + 49*2] = HERETIC_MINOR_VERSION;
|
||||
|
||||
// Draw the loading screen to a bitmap.
|
||||
StartupBitmap = ST_Util_AllocTextBitmap (font);
|
||||
ST_Util_DrawTextScreen (StartupBitmap, loading_screen, font);
|
||||
ST_Util_FreeFont (font);
|
||||
|
|
Loading…
Reference in a new issue