Skip to content

Commit

Permalink
FastDoom 0.8.14
Browse files Browse the repository at this point in the history
  • Loading branch information
viti95 committed Jun 16, 2022
1 parent ca6691d commit 697691e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# CHANGELOG

## 0.8.14 (16 Jun 2022)
* Performance uplift, avoid AGI stalls on column and visplane rendering code (486). Also small optimizations in sound code.
* Dual screen support. Now it's possible to use an Hercules card/monitor to render the automap. Use the command line parameter '-hercmap'.
* Better performance on 8-bit ISA cards and special backbuffered modes (Hercules, CGA, Plantronics ColorPlus, EGA, ATI 640x200).
* Removed Hercules 640x200 mode. It only worked on emulators, didn't work at all on real hardware. Even can cause serious problems on B&W monitors.
* Added transparent automap support. Press 'T' while on automap mode. Only supported while in 'fullscreen' mode.

## 0.8.13 (02 Jun 2022)
* Small performance uplift

Expand Down
4 changes: 2 additions & 2 deletions FASTDOOM/d_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,7 @@ void IdentifyVersion(void)

if (num_wads > 1)
{
printf("\nFastDoom version 0.8.13\n");
printf("\nFastDoom version 0.8.14\n");
printf("\nFound more than one IWAD. Please select the IWAD you want to play:\n\n");
printf(" 1. DOOM Shareware (doom1.wad)\n");
printf(" 2. DOOM (doom.wad)\n");
Expand Down Expand Up @@ -1093,7 +1093,7 @@ void D_DoomMain(void)
int386(0x10, &regs, &regs);
D_DrawTitle(title, FGCOLOR, BGCOLOR);

printf("\nFastDoom version 0.8.13\n");
printf("\nFastDoom version 0.8.14\n");
printf("P_Init: Checking cmd-line parameters...\n");

// turbo option
Expand Down
1 change: 1 addition & 0 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@
-disabledemo => Disables defered demos
-debugPort => Shows FPS via the debug port (0x80)
-fixDAC => Fixes palette corruption with VGA cards
-hercmap => Enable Hercules automap (requires dual video card setup)

Author
------
Expand Down

0 comments on commit 697691e

Please sign in to comment.