aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-04-17Renamed and merge some of the pixel interpolation functions (the names still ↵Max Horn
could be better) svn-id: r21981
2006-04-17Implements the end credits, and disables fast forwarding in the intro.Oystein Eftevaag
svn-id: r21980
2006-04-17Replaced o70_seekFilePos by o60_seekFilePos (both were identical)Max Horn
svn-id: r21979
2006-04-17Trigger videos for OmniTV in FFTravis Howell
svn-id: r21978
2006-04-17Adjust video playback code, due to false calls in prison of FFTravis Howell
svn-id: r21977
2006-04-17Remove leftover warningTravis Howell
svn-id: r21976
2006-04-17Improve sound support in FF and add MoviePlayer classTravis Howell
svn-id: r21975
2006-04-17Updated Mac OS X pixel icons from SVG versionMax Horn
svn-id: r21973
2006-04-17Allocate LUT/YUV tables on the heapMax Horn
svn-id: r21971
2006-04-17Modify InitLUT to make use of ColorMasks, making it easier to add support ↵Max Horn
for other color modes eventually. This also fixes the computation of LUT16to32 which so far always assumed 565 mode. svn-id: r21970
2006-04-17Fixed (A)RGBToColor templatesMax Horn
svn-id: r21969
2006-04-17Since we define alpha value 255 to mean 'opaque', or T::kAlphaMask into the ↵Max Horn
result of RGBToColor svn-id: r21968
2006-04-17Add color conversion functions based on ColorMasks, to demonstrate how this ↵Max Horn
would work svn-id: r21967
2006-04-17Moved ColorMasks to their own new header graphics/colormasks.h, so that both ↵Max Horn
the scalers and the GUI code can access them. Also added (untested) entries for 1555, 444, 888 and 8888 modes svn-id: r21966
2006-04-17Actually, 3-4 alpha bits are fine, too :)Max Horn
svn-id: r21965
2006-04-17cleanupMax Horn
svn-id: r21964
2006-04-17Clarify that kFeatureOverlaySupportsAlpha should only be set if at least a ↵Max Horn
few bits of alpha are present svn-id: r21963
2006-04-17Document how the alpha color component is to be interpretedMax Horn
svn-id: r21962
2006-04-17Removed my Altivec version of the hqx blitters, since it (a) didn't work ↵Max Horn
with newer GCC versions, (b) speed was improved on some systems, but actually slower on others, and (c) even on my old 400 Mhz G4 hqx is fast enough w/o it svn-id: r21961
2006-04-17Minor cleanupTravis Howell
svn-id: r21960
2006-04-17Intergrate the DXA player for Amiga/Macintosh verisons of FF, from cyxTravis Howell
svn-id: r21959
2006-04-17Handle unsigned variableArray reads better in FF, fixes more missing subroutinesTravis Howell
svn-id: r21958
2006-04-17Fix box selection after vertical scrolling in FFTravis Howell
svn-id: r21957
2006-04-17Only allocate scale buffer when using FFTravis Howell
svn-id: r21956
2006-04-17Fix vertical scrollingTravis Howell
svn-id: r21955
2006-04-16Should fix wrong thumbnail colors after a screen change, which changed bpp.Johannes Schickel
svn-id: r21954
2006-04-16This should fix wrong colors of the scummvm logo in the new theme after ↵Johannes Schickel
screen change. svn-id: r21953
2006-04-16- Moves Graphics::loadFont to Graphics::NewFont::loadFontJohannes Schickel
- adds code for caching of fonts (just for Graphics::NewFont) - implements cache using in the modern theme for custom fonts - adds cache file for current normal font in the theme zip file svn-id: r21952
2006-04-16Fix for bug #1471383: Instead of overloading ConfigManager::set, we now have ↵Max Horn
new setInt and setBool methods (matching getInt/getBool), which avoids strange quirks & bugs caused by (char *) being implicitly cast to int (ouch) svn-id: r21951
2006-04-16Remove redundant code. soundfont is taken care in OptionsDialog::open() now.Eugene Sandulenko
svn-id: r21950
2006-04-16Patch #1469722: "Game-specific SoundFont configuration broken"Eugene Sandulenko
svn-id: r21949
2006-04-16The backend is responsible for making its own copy of the mouse cursor, so FFTorbjörn Andersson
can use the original data, instead of leaking memory every time the drawMousePointer() function is called (several times per second). svn-id: r21948
2006-04-16The File class automatically tries adding "." to a filename if the file cannotTorbjörn Andersson
be found, so there's no need for the Simon engine to do it. (Though the game detector still does at the moment.) svn-id: r21947
2006-04-16some cleanupJoost Peters
svn-id: r21946
2006-04-16changed comments into real commentsWillem Jan Palenstijn
svn-id: r21945
2006-04-16Ignore the 'virtual' HE entries at the end of gameVariantsTable (this fixes ↵Max Horn
an odd detector problem) svn-id: r21944
2006-04-16Fixed some breakage in the 'Add Game' code I recently introduced; added a ↵Max Horn
FIXME comment regarding the 'description' config file key svn-id: r21943
2006-04-16Add missing mouse pointer checks for oracle and SAM in FFTravis Howell
svn-id: r21942
2006-04-16update so it compiles again with current svnJoost Peters
svn-id: r21941
2006-04-16Reduced dependencies on base/plugins.hMax Horn
svn-id: r21940
2006-04-16Fixed broken svn:keywords valuesMax Horn
svn-id: r21939
2006-04-16test commitMax Horn
svn-id: r21938
2006-04-16Removed the directory parameter from md5_fileMax Horn
svn-id: r21937
2006-04-16Do not override the 'directory' param when dumping BASS resourcesMax Horn
svn-id: r21936
2006-04-16Do not override the 'directory' param when dumping BS2 resourcesMax Horn
svn-id: r21935
2006-04-16- Implemented text padding in ListWidget and PopUpWidget. Right padding does ↵Eugene Sandulenko
not work yet. - Implemented highlisght padding in ListWidget - Eval::getVar() method with default value - Removed unused constructors for ListWidget and PoUpWidget - cleanup - bumped theme version svn-id: r21934
2006-04-16Fix cursor colors in chemsitry set for FFTravis Howell
svn-id: r21933
2006-04-16Fix mouse cursor changing for buttons in chemistry set for FFTravis Howell
svn-id: r21932
2006-04-16Fixed evil longstanding bug in String::toLowercase & toUppercase: Before ↵Max Horn
modifying the string content, make sure we do not share it with any other string). This should help (hopefully fix) bug #1470892 svn-id: r21931
2006-04-16Improve cursor support in FFTravis Howell
svn-id: r21930