aboutsummaryrefslogtreecommitdiff
path: root/common
AgeCommit message (Collapse)Author
2004-11-27Added some more mixer doxygen docs; cleaned up Mixer API a bit, removing ↵Max Horn
some very specialised methods svn-id: r15914
2004-11-27Make use of our String class instead of juggling with char pointers; added ↵Max Horn
File::exists method svn-id: r15913
2004-11-27Moved Engine::getSavePath() to class SaveFileManager; removed the ↵Max Horn
'directory' parameter from SaveFileManager::openSavefile and listSavefiles (they always use getSavePath() now, which is what we did anyway) svn-id: r15901
2004-11-22Added OSystem::beginGFXTransaction / endGFXTransaction (not yet implemented, ↵Max Horn
though :-) svn-id: r15864
2004-11-14Extend fopenNoCase with probe of capitalized files, such as Cave.mid.Eugene Sandulenko
svn-id: r15812
2004-11-13Add new clearScreen OSystem call. Currently only implemented in SDL backend. ↵James Brown
This call is currently only used for clearing the launcher screen to remove garbage from the main screen before reentering. svn-id: r15799
2004-11-09CleanupChris Apers
svn-id: r15739
2004-11-07For now, perform writing always in the current directory (the old code would ↵Max Horn
just create a new file in the first place it was looking at when using the write mode, which definitely is not what we want in most cases) svn-id: r15730
2004-10-19Got rid of ungetc() to save Chrilith from the trouble of implementing itTorbjörn Andersson
himself on PalmOS. svn-id: r15616
2004-10-18Accepted patch #1048693 -- Making File::gets() more well-defined.Eugene Sandulenko
svn-id: r15608
2004-10-16Fix bug #1048129 which prevented eof() method from working.Eugene Sandulenko
svn-id: r15573
2004-10-16Add gets() method to File class.Eugene Sandulenko
svn-id: r15572
2004-10-15Clarify OSystem::setPalette documentation (thanks for pointing this out, ↵Max Horn
LordHoto) svn-id: r15562
2004-10-08Use compile.h as prefix fileChris Apers
svn-id: r15472
2004-09-28Rename remaining OSystem methods to match our coding guidelinesMax Horn
svn-id: r15332
2004-09-28forgot to commit this, silly me :-)Max Horn
svn-id: r15323
2004-09-28Preserve the order of config file sections -> to suite people who manually ↵Max Horn
edit the config file svn-id: r15322
2004-09-28Remove unused symbolMax Horn
svn-id: r15321
2004-09-28use MAXPATHLEN for path buffer sizeJonathan Gray
svn-id: r15319
2004-09-18changed zlib support for msvcPaweł Kołodziejski
svn-id: r15163
2004-09-18fixed msvc compilation for __restrict__Paweł Kołodziejski
svn-id: r15160
2004-09-04Some type correctionsMax Horn
svn-id: r14896
2004-09-04fixed warning, updated msvc projectsPaweł Kołodziejski
svn-id: r14894
2004-09-04Got rid of OSystem::move_screenMax Horn
svn-id: r14882
2004-08-26Make building scalers optional.Marcus Comstedt
svn-id: r14784
2004-08-23remove cast that produces a warningJonathan Gray
svn-id: r14696
2004-08-23Fix warning.Eugene Sandulenko
svn-id: r14692
2004-08-22cleanup of TimerProc messMax Horn
svn-id: r14683
2004-08-20Make platform difference a bit clearerTravis Howell
svn-id: r14654
2004-08-14fixed warningsPaweł Kołodziejski
svn-id: r14603
2004-08-12Fix bug in FixedStack.pop(). Returned wrong value.Eugene Sandulenko
svn-id: r14567
2004-08-12Fix compilation of remove_at() in array.h. It was never tested before.Eugene Sandulenko
Make stacks' pop() return top value, not just move stack pointer. svn-id: r14565
2004-08-10Relaxed the assertion for the 3x scaler a bit. Since it uses pointers toTorbjörn Andersson
uint16, it should be enough that dstPtr is even; it doesn't have to be a multiple of four. The old assertion failed for me when I used the 3x scaler without aspect ratio correction. svn-id: r14536
2004-08-08Fixed variable access in the debuggerMax Horn
svn-id: r14523
2004-08-08Slightly optimiized Normal2xMax Horn
svn-id: r14519
2004-08-08fix compilationJonathan Gray
svn-id: r14510
2004-08-07Fix compile for now, include doesn't exist in mingw.Travis Howell
Should be checked for in configure svn-id: r14507
2004-08-07centers the scaled bitmap and fix the scaling of borders for ASM version)Gregory Montoir
svn-id: r14505
2004-08-07Fix scaling of the borders of each given rect (for non-ASM version)Max Horn
svn-id: r14504
2004-08-07should be 16 not 8Gregory Montoir
svn-id: r14503
2004-08-07Base our advmame scalers on the official Scale2x source - this way we can ↵Max Horn
easily update to new version and benefit from their optimizations (e.g. MMX support) svn-id: r14502
2004-08-05Try the current dir last, not firstMax Horn
svn-id: r14469
2004-07-31Fixed bug #1001069; clarified/simplified some error messagesMax Horn
svn-id: r14375
2004-07-26slightly more informative error messages in class FileMax Horn
svn-id: r14345
2004-07-26Turn various File class methods into virtual methods, to allow overloadingMax Horn
svn-id: r14341
2004-07-23Allow subclasses to modify File class members (e.g. to set _ioFailed); ↵Max Horn
change some warnings into errors svn-id: r14302
2004-07-21Small tweaks for the String classMax Horn
svn-id: r14293
2004-07-19Changed order of initialisation in XORReadStream::XORReadStream() to match ↵Bertrand Augereau
order of declaration, to avoid a pedantic warning svn-id: r14273
2004-07-18Simplified fopenNoCase (and reduced the code redundancy)Max Horn
svn-id: r14252
2004-07-01Fix bug introduced with last addDefaultDirectory() change. It preventedEugene Sandulenko
lowercase files from opening. svn-id: r14148