Commit graph

292 commits

Author SHA1 Message Date
gez
adb28b67b1 * Band-aid fixes:
- Fixed crash on startup in music_midi_out.cpp by preventing division by Tempo if Tempo is zero.
- Fixed crash on startup in gl_vertexbuffer.cpp when trying to access the sectors array though it was NULL. (It shouldn't even happen given numsectors is zero so the for iteration shouldn't even start, but it happened anyway for some mysterious reason.)
* Updated to ZDoom r2677:
- Cleaned up the ugly MIDI song creating code a little.
- Added a generic Standard MIDI File creator that works with any of the sequencers. mus2midi.cpp is no longer used but is kept around as a reference.
- Fixed: When the game nodes were the same as the render nodes, their pointers would not be NULLed.
- Renamed music_midi_midiout.cpp to music_smf_midiout.cpp.
- Moved MIDI precaching logic into MIDIStreamer so that SMF and HMI files can both use the same implementation.
- Added a player for HMI midi files.
- Set 'setslopeoverflow' compatibility flag for all maps in Massmouth2.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@932 b0f79afe-0144-0410-b225-9a4edf0717df
2010-09-03 08:11:47 +00:00
gez
b2aec4871a * Updated to ZDoom r2666:
- Fixed: font monospacing didn't apply to the space character.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@931 b0f79afe-0144-0410-b225-9a4edf0717df
2010-09-02 07:40:50 +00:00
gez
4dab616af2 * Updated to ZDoom r2663:
- Added the am_zoom command to zoom the automap by a specific step and set default mouse wheel bindings for it.
- Fixed: The mouse pointer stayed hidden on startup because the CursorState variable was not set until the mouse was grabbed.
- Disable framebuffer debug spew. All those OutputDebugString messages from DCanvas::DrawLine()'s Lock and Unlock calls were slowing things down extremely when looking at a software-drawn automap.
- Fixes to compile with GCC 4.5.0.
- Fix an ICE when compiling with GCC 4.5.0.
- Added drawshadow flag to drawstring.
- Added kgsws-cz's FBF_NOFLASH submission.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@929 b0f79afe-0144-0410-b225-9a4edf0717df
2010-09-01 06:57:40 +00:00
gez
8c7aa934f4 * Updated to ZDoom r2650:
- Fixd MinGW compilation of p_glnodes.cpp.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@926 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-31 15:55:53 +00:00
gez
bdfcc6617d * Updated to ZDoom r2644:
- Fixed: Hexen's pig was missing an A_QueueCorpse call.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@925 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-30 22:10:20 +00:00
gez
5306b85558 * Updated to ZDoom r2641:
- BOOM compatibility fix: Allow voodoo dolls to spawn inside narrow pits.
- Added new sector special 195 to set the 'hidden' sector flag in non-UDMF maps.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@924 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-30 08:09:21 +00:00
gez
d43f8a936f * Updated to ZDoom r2629:
- Fixed: The automap was too aggressive about hiding markers.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@922 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-29 09:51:24 +00:00
gez
210825b5ec * Updated to ZDoom r2627:
- Fixed: P_LineAttack mixed up two flags variables.
- Added PinkSilver's LOF_NOJUMP submission for A_LookEx.
- Fixed: Clearing a pickup message for inventory items was not possible. Changed it so that "You got a pickup" is AInventory's pickup message and not a default returned when nothing valid is set.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@921 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-28 22:17:58 +00:00
gez
cc17cdc975 * Updated to ZDoom r2624:
- Added 'nospriterename' key to GAMEINFO lump so that PWADs have a means to disable this feature without having to specify a command line switch.
- Fixed: Subsectors which are the origin of polyobjects should not be drawn on the textured automap because the vertices no longer are where they'd be expected to be.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@919 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-28 17:41:51 +00:00
gez
81e9d18951 - Fixed minor inaccuracy in ArtiPork's spawn state sequence duration.
* Updated to ZDoom r2621:
- Fixed: -nosfx deactivated the entire sound system which also made music inoperable. Changed it so that all it does is block sound effects from being started.
- Fixed: armor factor application was done wrong.
- Fixed: APROP_Invulnerable could only be set and unset but not checked.
- Fixed: Two-sided polyobjects applied thrust to sectors in a way that did not work.
- Fixed: Hexen's CorpseBloodDrip was missing its death sound.
- Fixed: The textured automap node initialization code could crash on maps that only have single isolated sectors.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@918 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-28 15:13:04 +00:00
Christoph Oelckers
4005528b42 - Changed the default key for am_toggletexture to P so as not to conflict with the default chat key.
- fixed: Extraction of partner segs was broken in the internal node builder.
- removed some obsolete code for a never implemented render data caching system.
- made output of 'dumpgeometry' CCMD only go to the log file because printing it to the console takes several minutes, even for small maps.
- version bump to 1.5.02.


git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@916 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-28 11:19:10 +00:00
Christoph Oelckers
d29dc0716d - version bump.
- fixed Hexen's flames.


git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@913 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-27 22:31:55 +00:00
Christoph Oelckers
af753ebe37 - Update to ZDoom r2613
* addition of textured automap. (not active for GL renderer yet!)



git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@909 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-27 17:42:01 +00:00
gez
2934a611c9 * Updated to ZDoom r2601:
- Added: Let the kill CCMD also kill replacements of the monster that is specified.
- Add a GetReplacement method to PClass to clean up some really ugly code
- Who wrote the 'kill' CCMD? The way it checked if two classes were identical was horrendously overcomplicated.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@908 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-27 08:41:43 +00:00
gez
1b6cb97e0a * Updated to ZDoom r2600:
- Added Aroenai's snd_menuvolume submission.
- Added: offset the trail actors spawned by AFastProjectile by missileheight.
- Added 'fluidsynth'  option for $mididevice command.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@907 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-26 20:13:56 +00:00
gez
5c0a0c99d8 * Updated to ZDoom r2579:
- Fixed: The UDMF check for dialogues without owning class needs to be relaxed. A dialogue with an id and no class is a valid construct.
- Fixed: Trying to assign a non-existent dialogue to an actor in UDMF partially overwrote the default dialogue.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@906 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-24 14:22:31 +00:00
gez
27a4a6ddba * Updated to ZDoom r2577:
- Externalized the "You seem to have enough" string to language lump.
- Allow all texts in conversations to reference the string table.
- Fixed: If no dialogue is found for the current map, SCRIPT00 should still be loaded.
- MinGW did not like this assignment in the FluidSynth loader.
* Also externalized the "Go away!" string for consistency.
* Fixed minor typo in UDMF specs changelog.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@905 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-24 14:08:15 +00:00
gez
d900641e08 * Updated to ZDoom r2569:
- Removed FActorInfo::ConversationID which was development garbage of the USDF branch.
- Fixed: The USDF CheckActorType function did not return the class object for ZDoom namespace.
- Fixed: The binary check for dialogue lumps must only rewind the file by 4 bytes, not completely to the start.
- Added UMDF property to assign conversation dialogues to mapthings.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@903 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-22 21:36:52 +00:00
Christoph Oelckers
da09f94592 - Update to ZDoom r2563: fixed: Blood spawning checked actor flags before performing replacement.
git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@902 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-22 10:29:33 +00:00
gez
81fa721abc * 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
2010-08-21 08:49:56 +00:00
gez
abfb13cc54 * Updated to ZDoom r2560:
- Merge the shared code for the softsynths into a common base class.
- Expose more FluidSynth settings through these cvars:
  * fluid_samplerate
  * fluid_threads
  * fluid_reverb_roomsize
  * fluid_reverb_damping
  * fluid_reverb_width
  * fluid_reverb_level
  * fluid_chorus_voices
  * fluid_chorus_level
  * fluid_chorus_speed
  * fluid_chorus_depth
  * fluid_chorus_type
- Added a dlopen() version of on-demand FluidSynth loading and exposed it to CMake through the DYN_FLUIDSYNTH option.
- Add on-demand loading for fluidsynth.dll. This also lets you build with FluidSynth support without actually having the FluidSynth development files installed.
- Add a default search for Creative's CT4MGM.SF2 on Windows if fluid_patchset is unspecified. Also check for CT2MGM.SF2 if CT4MGM.SF2 is not found.
- Use fluid_patchset to specify the SoundFont(s) for FluidSynth instead of doubling up with snd_midipatchset, which is already used by FMOD.
- Increase the fluid_voices default to 128. It apparently has a poor voice cutting algorithm which is painfully apparent on hexen.wad MAP01's music, which hits around 90 voices.
- Patch from Chris:
  * Add FluidSynth to the menu.
  * Enable FluidSynth for MIDI as well as MUS.
  * Fix CmakeLists.txt.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@898 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-20 11:20:13 +00:00
gez
b2ba5f8cf9 * Updated to ZDoom r2553:
- The Wiki seems to imply that FMod 4.28 is not the best choice for ZDoom so mention this in fmod_version.txt.
- Moved tag strings into the language file and adding tags for all weapons and inventory items.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@897 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-19 10:47:58 +00:00
gez
bf689bf0af - Updated to ZDoom r2548 with addition of FluidSynth support code and the following fixes.
git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@895 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-17 08:44:22 +00:00
gez
18ae99a67a * P_LoopSidedefs() needed another fix as it shouldn't try to report errors found on the second loop.
* Updated to ZDoom r2543:
- Added a compatibility option to render all segs of a polyobject in the center's subsector and automatically set it for Hexen MAP36 and HEXDD MAP47.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@894 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-15 13:10:53 +00:00
gez
bd45d338fc * Updated to ZDoom r2542:
- Fixed: The center flag for drawimage didn't work.
- Fixed: GCC didn't like casting from seg_t* to unsigned int on 64-bit systems.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@893 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-15 08:23:24 +00:00
gez
ef6e35d3d9 * Updated to ZDoom r2539:
- Maybe allow assembly on Intel Macs? - attempt 2

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@891 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-14 09:24:25 +00:00
gez
9ad088f62d * Updated to ZDoom r2532:
- Added PinkSilver's ACS Checksight submission.
- Added TheShooter7/Aroenai's patch for switch on pickup menu option.
- Added TheShooter7's patch for NOPITCH flags for hitscan attacks.
- Enable backpatching on non-Windows machines.
- Maybe enable assembly on Intel Macs?
- Make the Cocoa IWAD picker behave like the others: Double-clicking an entry starts it, as does pressing Return, and pressing Escape is equivalent to the Cancel button.
- Fixed byte swapping the script count for new-style ACS. My 2poly.wad now works on PPC.
- Fixed more byte swapping lackage in p_acs.cpp. A cursory run through Hexen seems to have scripting working now.
- Fixed a number of places in p_acs.cpp that did not do byte swapping but should have.
- Fix printf warnings in p_setup.cpp.
- Fix buiding on PowerPC.


git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@886 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-13 11:41:17 +00:00
Christoph Oelckers
f474931ea8 - Version bump to 1.5.0.
- Update to ZDoom r2509:
    * Set explicit positioning for the gameplay options menu instead of relying on the automatic positioning.
    * Fix compilation with MinGW + w32api and clean up warnings.
    * Clean up vid_listadapters code.


git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@880 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-11 06:40:06 +00:00
gez
6f4410f6de * Updated to ZDoom r2504:
- Added: If a PowerFlight item got a valid icon don't use the spinning wings for the HUD display
- Added Polyobj_MoveToSpot action specials. They are functionally identical to Polyobj_MoveTo but get the target coordinate from a map spot instead.
- Added GetPolyobjX and GetPolyobjY ACS functions.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@879 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-10 21:21:12 +00:00
gez
4a5f749642 * Updated to ZDoom r2501:
- Fixed: Changing APROP_Friendly in ACS did not adjust the monster count.
- Fixed: AActor::CanSeek had the check for the visibility of the target actor's alpha reversed.
- Added an Alt HUD icon for Hexen's fighter's fist.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@878 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-10 18:11:53 +00:00
gez
6700a7812d - Updated to ZDoom r2500 now that the polybsp code is in.
- #ifndef'ed out Tom Seddon's multimonitor code for Unix since the untested SDL part did not work.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@877 b0f79afe-0144-0410-b225-9a4edf0717df
2010-08-10 10:07:05 +00:00
gez
32baeb430c * Updated to ZDoom r2474:
- Add a NULL FrontCopySurface check to D3DFB::GetCurrentScreen, because this can apparently be NULL when starting with -timedemo or -playdemo. (But it never happened for me in the debugger.)


git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@863 b0f79afe-0144-0410-b225-9a4edf0717df
2010-07-30 07:55:08 +00:00
gez
1042545450 * Updated to ZDoom r2471:
- Fixed: Chex Quest should have a 'Read This' menu option.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@862 b0f79afe-0144-0410-b225-9a4edf0717df
2010-07-29 15:19:16 +00:00
gez
b5c5b6a909 * Updated to ZDoom r2466:
- separated hitlist generation for texture precaching into a virtual function of DFrameBuffer.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@859 b0f79afe-0144-0410-b225-9a4edf0717df
2010-07-28 23:15:18 +00:00
gez
0001a63c3a * Updated to ZDoom r2465:
- added TIHan's ArmorFactor submission.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@858 b0f79afe-0144-0410-b225-9a4edf0717df
2010-07-27 18:59:20 +00:00
gez
38a085f413 * Updated to ZDoom r2463:
- Added dumpactors patch.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@857 b0f79afe-0144-0410-b225-9a4edf0717df
2010-07-26 18:06:09 +00:00
gez
fabdbd1706 * Fixed: GLDEFS DisableBrightMaps did not apply to HUD sprites.
* Updated to ZDoom r2462:
- Added automap enhancements but made the new key icon optional.
- Use side_t::RightSide in IterFindPolySides() instead of the SideListHead array.
- Added Pink Silver's DrawString/Number alignment patch (with one minor change).

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@855 b0f79afe-0144-0410-b225-9a4edf0717df
2010-07-25 22:56:01 +00:00
gez
0a35f861ce * Updated to ZDoom r2456:
- Added DavidPH's code submission: explicit angle for A_CustomBulletAttack function, A_Saw extension, A_RailAttack extension, and A_JumpIfTargetInLOS extension.
- added PinkSilver's APROP_MasterTid submission.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@850 b0f79afe-0144-0410-b225-9a4edf0717df
2010-07-24 09:26:26 +00:00
gez
80539d2297 * Updated to ZDoom r2451:
- Added DavidPH's A_Teleport submission but removed the now redundant GetSpotWithMinDistance functions.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@849 b0f79afe-0144-0410-b225-9a4edf0717df
2010-07-23 22:08:06 +00:00
gez
5c0247886e * Added missing po_man.h.
* Updated to ZDoom r2450:
- Added DavidPH's Poison damage extension but changed it so that the metadata can be removed.
- Added Firebrand's patch to rename 'swap' due to naming conflicts in newer MSVC compilers.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@848 b0f79afe-0144-0410-b225-9a4edf0717df
2010-07-23 22:01:12 +00:00
Christoph Oelckers
76780fd5b1 Update to ZDoom r2448:
- addition of and changes for new polyobject code.


git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@846 b0f79afe-0144-0410-b225-9a4edf0717df
2010-07-23 14:32:07 +00:00
gez
0dcbdf347b * Updated to ZDoom r2442:
- Fixed: The x64 project configuration had not been kept synced with the Win32 configuration and did not exclude sbarinfo_commands.cpp from the build.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@845 b0f79afe-0144-0410-b225-9a4edf0717df
2010-07-19 10:37:43 +00:00
gez
263d0c3e11 * Updated to ZDoom r2441:
- Release Objective-C objects (since I found out the garbage collector is opt-in). [Again, doesn't matter much until compilation on Mac platforms is possible.]

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@844 b0f79afe-0144-0410-b225-9a4edf0717df
2010-07-18 10:30:58 +00:00
gez
d2738cdad8 * Updated to ZDoom r2440:
- Added Cocoa IWAD picker for Mac OS X. [Not that it matters much at the moment.]

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@843 b0f79afe-0144-0410-b225-9a4edf0717df
2010-07-18 09:04:45 +00:00
gez
4cb0e1c360 * Updated to ZDoom r2345:
- Added an optional parameter to DamageScreenColor to scale the amount of damage for pain flash calculations. This can range from 0.0 to 1.0.
- Sounds that define a loop no longer play looped by default. They must be started with CHAN_LOOP so that the higher level sound code knows they loop and can handle them accordingly.
- Added support for a LOOP_BIDI tag. Set it to "1", "On", "True", or "Yes" to use a bidirectional loop. This only works with sounds and not music, because music is streamed so does not support them.
- Extended custom loop support to work with samples as well as music.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@839 b0f79afe-0144-0410-b225-9a4edf0717df
2010-07-16 06:15:56 +00:00
gez
8f46bbe36a * Updated to ZDoom r2424:
- Added support for custom loop points for songs. This does not work with MP3 because of the way MP3 obfuscates custom tags. Vorbis and FLAC are fine. (I could make it work with MP3, but you should be using Vorbis instead.) They are:
  * LOOP_START: Start time for the loop. If omitted, the song repeats from the beginning.
  * LOOP_END: End time for the loop. If omitted, the song loops at the end. (If you need to specify this, why aren't you using a shorter song.)
  You only need to specify one of these tags to set the custom loop. Naturally, you can set them both, as well. The format for each tag is the same:
  * If it contains a colon (:), it specifies by time. This may be of the form 00:00:00.00 (HH:MM:SS.ss) to specify by play. Various parts may be left off. e.g. To start the loop at 20 seconds in, you can use ":20", 0:20", "00:00:20", ":20.0", etc. Values after the decimal are fractions of a second and accurate to one millisecond.
  * If you don't include a colon but just have a raw number, then it's the number of PCM samples at which to loop.
  * Any characters other than digits (0-9), colons (:), or a single decimal point for the seconds portion will result in the tag being ignored.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@838 b0f79afe-0144-0410-b225-9a4edf0717df
2010-07-10 07:05:10 +00:00
gez
37fbfde6ce * Updated to ZDoom r2419:
- Fixed: FMugShotFrame::GetTexture() needs to NULL-check skin_face. (default_face might also be empty. I don't know if that deserves special handling, but it doesn't crash, so I'll let blzut3 worry about it.)
- Don't give health for "give all".
- "Give artifacts" and "give puzzlepieces" now use the amount value to decide how much of each item to give you. 0 means to give you the max. The old behavior can be obtained by explicitly stating 1. (Since "give all" encompasses these as well, this also applies to that.)
- Added "give everything" cheat to give everything. This is like "give all" but ignores the WIF_CHEATNOTWEAPON flag. (Note that this flag has valid uses, but that doesn't stop people from abusing it anyway.)
- Added multimonitor support, as per Tom Seddon's code. vid_adapter controls which one to use, and vid_listadapters prints them. [Does not work with OpenGL rendering, though. I didn't try to adapt the code to the renderer as I do not have the time, nor have I any extra monitor for testing.]

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@836 b0f79afe-0144-0410-b225-9a4edf0717df
2010-07-09 06:28:49 +00:00
gez
0087314696 * Updated to ZDoom r2415:
- Fixed: Hexen's melee weapons were missing some NULL pointer checks in the code that determines whether they hit something or not.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@835 b0f79afe-0144-0410-b225-9a4edf0717df
2010-07-08 21:49:30 +00:00
gez
a75afabba4 * Updated to ZDoom r2414:
- Fixed: ZDoom aborted on old WADs containing a binary LANGUAGE lump.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@834 b0f79afe-0144-0410-b225-9a4edf0717df
2010-07-07 12:52:30 +00:00
gez
3c6ca1e0d6 * Updated to ZDoom r2402:
- Fixed: the Hexen statusbar should assume you are the fighter if you are not one of the known classes.

git-svn-id: http://mancubus.net/svn/hosted/gzdoom/trunk@833 b0f79afe-0144-0410-b225-9a4edf0717df
2010-07-02 07:48:59 +00:00