Commit Graph
17931 Commits
Author SHA1 Message Date
Steve Checkoway cb229a8774 Remove redundant defines. 2005-10-24 08:17:12 +00:00
Steve Checkoway 3f93a76b21 Header cleanup. 2005-10-24 07:37:38 +00:00
Glenn Maynard 3cb8e00e94 remove HAVE_UNIX harder 2005-10-24 07:27:50 +00:00
Glenn Maynard 040e795623 remove HAVE_UNIX 2005-10-24 07:26:53 +00:00
Glenn Maynard a21a296d5a HAVE_UNIX -> UNIX 2005-10-24 07:26:24 +00:00
Glenn Maynard 94f5407bda remove HAVE_LINUXKERNEL 2005-10-24 07:23:38 +00:00
Glenn Maynard 539ec6aa5c HAVE_WIN32 -> WINDOWS. HAVE_LINUXKERNEL -> LINUX. If some features originating in Linux work on other systems, then define them specifically (eg. HAVE_LINUX_JOYSTICKS). 2005-10-24 07:22:28 +00:00
Glenn Maynard 45ec442600 I'm not entirely sure why someone thought it was appropriate to call someone else's code "Useless!" in the source code. (The comment was also entirely wrong: the driver was used for prototyping on a system that used SDL for video but received input from a TTY, which SDL didn't support.) 2005-10-24 07:17:24 +00:00
Glenn Maynard a1f58e11eb remove HAVE_WIN32. We have WIN32 (WIndows, Xbox) and WINDOWS
(Windows only); we don't need "HAVE_WIN32" to complicate things further.
2005-10-24 07:12:56 +00:00
Steve Checkoway 532b115aa6 Remove unnecessary. (Funny comment though.) 2005-10-24 06:51:20 +00:00
Glenn Maynard 4e464c3777 remove old comment 2005-10-24 06:42:28 +00:00
Glenn Maynard 2b035b3ebd cleanup 2005-10-24 06:33:32 +00:00
Glenn Maynard e8f7db11f3 optimize InputFilter::Update (.5ms -> .05ms on k7/1000) 2005-10-24 06:32:30 +00:00
Glenn Maynard 2791f8f90b remove unneeded
fix use before init
2005-10-24 05:38:04 +00:00
Steve Checkoway a2c1b1443d Cleanup. 2005-10-24 05:28:38 +00:00
Glenn Maynard 330f0a783c MovieDecoder_Theora is reading the entire file when given a non-Ogg. Treat holes at the beginning of the file as fatal. 2005-10-24 05:19:53 +00:00
Glenn Maynard 20f8e3e08f MovieDecoder_Theora is reading the entire file when given a non-Ogg. This fix should expose the actual problem (rest of the fix coming). 2005-10-24 05:06:51 +00:00
Glenn Maynard 06d12e2239 support PREFSMAN->m_iSoundPreferredSampleRate 2005-10-24 02:45:45 +00:00
Glenn Maynard 4bd59b5a7b cleanup 2005-10-24 02:42:56 +00:00
Glenn Maynard 5507c323da cleanup 2005-10-24 02:41:58 +00:00
Glenn Maynard bcf1d288f9 support PREFSMAN->m_iSoundPreferredSampleRate 2005-10-24 02:37:04 +00:00
Glenn Maynard ee5e5dd25a cleanup 2005-10-24 02:28:31 +00:00
Glenn Maynard fad2ac6ff1 never mind this sentinel 2005-10-24 02:23:12 +00:00
Glenn Maynard 74ee22ad04 cleanup 2005-10-24 02:14:43 +00:00
Glenn Maynard a9712d7a38 cleanup 2005-10-24 02:08:27 +00:00
Glenn Maynard 63cb85cafa clean up and optimize 2005-10-24 02:00:19 +00:00
Glenn Maynard 9d32f5e9f5 use PREFSMAN->m_iSoundPreferredSampleRate 2005-10-24 01:21:07 +00:00
Glenn Maynard 9bd1ed48d6 cleanup 2005-10-23 22:27:13 +00:00
Glenn Maynard 98270a69a2 add SoundPreferredSampleRate 2005-10-23 22:11:48 +00:00
Glenn Maynard 9d7ce29cdd report the fake sample rate, so changes to it work 2005-10-23 22:00:23 +00:00
Glenn Maynard 49e8dd1327 cleanup 2005-10-23 21:53:32 +00:00
Chris Danford a048cc52bb assert earlier if missing rather than when trying to open the Milkshape file 2005-10-23 18:48:25 +00:00
Chris Danford 59602f6f6e sort list of files by file name 2005-10-23 18:02:32 +00:00
Chris Danford eb2efd6d52 fix uninstall dialog listed all package names on one line 2005-10-23 17:18:24 +00:00
Chris Danford a6d98549e3 fix uninstall dialog listed all package names on one line 2005-10-23 17:06:54 +00:00
Steve Checkoway 5d41ae8076 Update Library project. 2005-10-23 09:54:37 +00:00
Steve Checkoway 7888f7b53d Add theora. 2005-10-23 09:53:14 +00:00
Steve Checkoway e1ba368806 Update project file. 2005-10-23 09:52:29 +00:00
Steve Checkoway 1a78603d2a Add static libs. 2005-10-23 09:51:52 +00:00
Glenn Maynard e91c75211f fix warning 2005-10-23 07:55:11 +00:00
Glenn Maynard d19569178c bind GetAllTrails 2005-10-23 07:52:02 +00:00
Glenn Maynard 7427c17629 fix m_fInvertDistance 2005-10-23 07:50:16 +00:00
Glenn Maynard 189d797d22 update 2005-10-23 07:08:45 +00:00
Glenn Maynard 7a67264ece remove GetVolume 2005-10-23 07:05:33 +00:00
Glenn Maynard 8b34d6eef8 cleanup 2005-10-23 07:04:55 +00:00
Chris Danford eea214bad5 remove choosing WaveOut 2005-10-23 04:55:01 +00:00
Glenn Maynard 8b0223350f Pull complicated computations out of per-arrow code, and run them just once per
frame.

This is a minor optimization, but it can gain a couple FPS.  More importantly,
it reduces the amount of code in the time-critical functions, which makes it
easier to profile and optimize the time-critical parts.  (Eventually, this should
probably be real class.)
2005-10-23 04:22:29 +00:00
Glenn Maynard 2378994167 cleanup 2005-10-23 04:14:06 +00:00
Glenn Maynard a38d69ed03 fix off by half a pixel in centered 2005-10-23 04:11:27 +00:00
Glenn Maynard 60b9939f44 cleanup 2005-10-23 02:52:24 +00:00