aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ok, need .markdown?HEADmasterbryan newbold2010-02-021-0/+0
|
* ok, need .rst?bryan newbold2010-02-021-0/+85
|
* ok, need .rst?bryan newbold2010-02-021-83/+0
|
* aero-specific READMEbryan newbold2010-02-021-0/+83
|
* aero-specific READMEbryan newbold2010-02-021-1/+1
|
* AERO patch applied; this represents our progress at the end of GGJbryan newbold2010-02-027-17/+106
|
* get rid of gas remainsludwig2009-10-262-245/+10
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1710 edf5b092-35ff-0310-97b2-ce42778d08ea
* Fix another issue I didn't know about: cgame does not kill sound loops it ↵thilo2009-10-261-49/+68
| | | | | | startet, just stops sending the entity information for these loops. Changed it so that loops added with AddLoopingsound() are being killed again as soon as the entity to the source is not sent anymore. git-svn-id: svn://svn.icculus.org/quake3/trunk@1709 edf5b092-35ff-0310-97b2-ce42778d08ea
* * Fix some warnings in lcc compiletma2009-10-252-9/+10
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1708 edf5b092-35ff-0310-97b2-ce42778d08ea
* * Update SDL headers and win32 libs to 1.2.14tma2009-10-2543-1016/+1728
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1707 edf5b092-35ff-0310-97b2-ce42778d08ea
* * Bump the minimum SDL version up to 1.2.10, and remove workarounds for ↵tma2009-10-252-24/+2
| | | | | | earlier versions git-svn-id: svn://svn.icculus.org/quake3/trunk@1706 edf5b092-35ff-0310-97b2-ce42778d08ea
* * Make [sv|cl]_packetdelay work when timescale is not 1 (arQon)tma2009-10-251-1/+1
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1705 edf5b092-35ff-0310-97b2-ce42778d08ea
* * (bug #4316) Hack to work around suspected driver bug (Lakitu7)tma2009-10-251-1/+7
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1704 edf5b092-35ff-0310-97b2-ce42778d08ea
* Show color codes in full length, patch by Amanieu (#4318)thilo2009-10-251-3/+5
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1703 edf5b092-35ff-0310-97b2-ce42778d08ea
* fix zlib includesludwig2009-10-243-10/+7
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1702 edf5b092-35ff-0310-97b2-ce42778d08ea
* Add SIGCONT signal handler to reinitialize console after doing CTRL+Z / fg, ↵thilo2009-10-241-22/+36
| | | | | | as under Linux/bash stdin seems to lose O_NONBLOCK flag as well as all tcsetattr() attributes after foregrounding git-svn-id: svn://svn.icculus.org/quake3/trunk@1701 edf5b092-35ff-0310-97b2-ce42778d08ea
* A few more last fixes that will handle some special casesthilo2009-10-241-8/+22
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1700 edf5b092-35ff-0310-97b2-ce42778d08ea
* Better stop than just pause.thilo2009-10-231-1/+1
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1699 edf5b092-35ff-0310-97b2-ce42778d08ea
* Don't kill sources out of range, just pause them. Make sure the listener ↵thilo2009-10-231-74/+135
| | | | | | gets the impression sources have been continuing to run in the background. git-svn-id: svn://svn.icculus.org/quake3/trunk@1698 edf5b092-35ff-0310-97b2-ce42778d08ea
* * Adapted the universal build script to work with the newer Makefiletjw2009-10-231-81/+23
| | | | | | | | | since CFLAGS are sent to the linker now in addition to LDFLAGS * Remove Mac OS X 10.2 support from the universal build script. git-svn-id: svn://svn.icculus.org/quake3/trunk@1697 edf5b092-35ff-0310-97b2-ce42778d08ea
* -lz must be specified after object files using itludwig2009-10-231-1/+1
| | | | | | | If it's specified first newer gcc resp the --as-needed option doesn't work. git-svn-id: svn://svn.icculus.org/quake3/trunk@1696 edf5b092-35ff-0310-97b2-ce42778d08ea
* remove redundancythilo2009-10-231-1/+0
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1695 edf5b092-35ff-0310-97b2-ce42778d08ea
* Synchronize looping ambient sounds (#2984)thilo2009-10-231-27/+108
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1694 edf5b092-35ff-0310-97b2-ce42778d08ea
* Fix uninitialized words in VM interpreter, reported by Patrick Baggett (4281)thilo2009-10-231-65/+57
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1693 edf5b092-35ff-0310-97b2-ce42778d08ea
* - Add Ben Millwood's implementation of strtod/strtol to bg_lib.cthilo2009-10-212-18/+360
| | | | | | | - Add %s scanf patch from M. Kristall to scanf in bg_lib.c git-svn-id: svn://svn.icculus.org/quake3/trunk@1692 edf5b092-35ff-0310-97b2-ce42778d08ea
* * D'oh, vm_ppc.c isn't used any moretma2009-10-201-2071/+0
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1691 edf5b092-35ff-0310-97b2-ce42778d08ea
* * Sort out the white space disaster in vm_ppc.ctma2009-10-201-1233/+1230
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1690 edf5b092-35ff-0310-97b2-ce42778d08ea
* * (bug #4249) Fix similar overflow in PPC VM (untested)tma2009-10-201-25/+35
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1689 edf5b092-35ff-0310-97b2-ce42778d08ea
* Fix botlib parser for negative int/float values, thanks to Makro for ↵thilo2009-10-193-17/+48
| | | | | | reporting (#4227). git-svn-id: svn://svn.icculus.org/quake3/trunk@1688 edf5b092-35ff-0310-97b2-ce42778d08ea
* * (bug #4249) Fix buffer overflow in x86 VMtma2009-10-191-19/+29
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1687 edf5b092-35ff-0310-97b2-ce42778d08ea
* Fix infinite loop in case an invalid pk3 file has been downloaded from the ↵thilo2009-10-195-20/+78
| | | | | | server. Thanks tjw for reporting (#3074) git-svn-id: svn://svn.icculus.org/quake3/trunk@1686 edf5b092-35ff-0310-97b2-ce42778d08ea
* Shut up warningsthilo2009-10-191-2/+2
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1685 edf5b092-35ff-0310-97b2-ce42778d08ea
* - Applied patch from /dev/humancontroller to set cvar_modifiedFlags from ↵thilo2009-10-191-25/+18
| | | | | | | | | | Cvar_Set_f (#3636) - Exchanged ugly code with Cmd_ArgsFrom() git-svn-id: svn://svn.icculus.org/quake3/trunk@1684 edf5b092-35ff-0310-97b2-ce42778d08ea
* - Tested and updated MSVC project file to really make it work with new zlibthilo2009-10-193-337/+5
| | | | | | | - Removed unnecessary zconf.in.h - Fixed include dirs for several MSVC targets git-svn-id: svn://svn.icculus.org/quake3/trunk@1683 edf5b092-35ff-0310-97b2-ce42778d08ea
* Last revision (1681) was described incorrectly. It uses parts of Amanieu's ↵thilo2009-10-191-0/+71
| | | | | | | | | patch to add the most recent version of zlib to ioquake3. This commit now adds zlib c-file dependencies to the MSVC project file, not tested yet, thought. git-svn-id: svn://svn.icculus.org/quake3/trunk@1682 edf5b092-35ff-0310-97b2-ce42778d08ea
* Just unix2dos, nothing to see here ...thilo2009-10-1924-4198/+7741
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1681 edf5b092-35ff-0310-97b2-ce42778d08ea
* Adding missing header includes to botlib files. Thanks to Ben Millwood for ↵thilo2009-10-185-0/+5
| | | | | | patch. (#4237) git-svn-id: svn://svn.icculus.org/quake3/trunk@1680 edf5b092-35ff-0310-97b2-ce42778d08ea
* * Remove the SDL patch as it has since been incorporated into SDL svntma2009-10-182-616/+0
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1679 edf5b092-35ff-0310-97b2-ce42778d08ea
* * Reverted fix for #3533tma2009-10-171-1/+1
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1678 edf5b092-35ff-0310-97b2-ce42778d08ea
* * (bug #3533) -ffast-math is apparently problematic on OSXtma2009-10-171-1/+1
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1677 edf5b092-35ff-0310-97b2-ce42778d08ea
* Only create botlib.log if in bot developer mode.thilo2009-10-171-15/+21
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1676 edf5b092-35ff-0310-97b2-ce42778d08ea
* Don't look for DLLs on current working directory anymore, for security reasons.thilo2009-10-171-9/+3
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1675 edf5b092-35ff-0310-97b2-ce42778d08ea
* * Disable stdout/stderr redirection on Windowstma2009-10-161-0/+3
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1674 edf5b092-35ff-0310-97b2-ce42778d08ea
* Still some info on the impact marks thingthilo2009-10-161-0/+4
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1673 edf5b092-35ff-0310-97b2-ce42778d08ea
* Allow weapon marks on triangle meshes (default: disabled), patch by Oliver ↵thilo2009-10-163-17/+34
| | | | | | McFadden. http://bugzilla.icculus.org/show_bug.cgi?id=3774 git-svn-id: svn://svn.icculus.org/quake3/trunk@1672 edf5b092-35ff-0310-97b2-ce42778d08ea
* * Actually that can be more precise...tma2009-10-161-1/+1
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1671 edf5b092-35ff-0310-97b2-ce42778d08ea
* * (bug #4232) Avoid "cl.snap.serverTime < cl.oldFrameServerTime" for slowtma2009-10-151-0/+9
| | | | | | | loading clients combined with short g_warmups git-svn-id: svn://svn.icculus.org/quake3/trunk@1670 edf5b092-35ff-0310-97b2-ce42778d08ea
* * Quieten pkg-config and sdl-config tests down, portablytma2009-10-151-3/+5
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1669 edf5b092-35ff-0310-97b2-ce42778d08ea
* * Make LCC's handling of -D arguments on windows consistent with other plaftormstma2009-10-151-6/+62
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1668 edf5b092-35ff-0310-97b2-ce42778d08ea
* * Fix cross compilationtma2009-10-141-1/+3
| | | | git-svn-id: svn://svn.icculus.org/quake3/trunk@1667 edf5b092-35ff-0310-97b2-ce42778d08ea