aboutsummaryrefslogtreecommitdiff
path: root/engines/tony
AgeCommit message (Collapse)Author
2012-09-07TONY: Some more cleanupStrangerke
2012-09-07TONY: Move const tables back to .cpp, as suggested by LordHotoStrangerke
2012-09-06TONY: Some more cleanupStrangerke
2012-09-06TONY: Misc cleanupStrangerke
2012-09-05TONY: Bugfix for OFFSETOF macro on 64-bit systemsPaul Gilbert
2012-09-05TONY: Change to hopefully fix Mingw 64 compilation errorsPaul Gilbert
2012-09-02TONY: Move code from .h to .cpp filesStrangerke
2012-09-01TONY: Remove adv.hStrangerke
2012-09-01TONY: Move some more code from .h to .cpp filesStrangerke
2012-09-01TONY: Move some functions from .h to .cpp filesStrangerke
2012-09-01TONY: More renamingStrangerke
2012-08-31TONY: Rename some more variables and structuresStrangerke
2012-08-30TONY: Translate some variables in findPath, reduce some variable scopesStrangerke
2012-08-29TONY: Replace C-style comments by C++-style ones.Strangerke
Also translate some more Italian comments
2012-08-29TONY: Translate some remaining Italian commentsStrangerke
2012-08-29TONY: Limit effect of cursor workaround.Alyssa Milburn
This avoids incorrect hotspot offsets.
2012-08-29TONY: Remove useless/commented music code.Alyssa Milburn
2012-08-29TONY: Remove some dead codeStrangerke
2012-08-29TONY: Translate some remaining italian commentsStrangerke
2012-08-29TONY: Reduce scope of some variablesStrangerke
2012-08-28TONY: Janitorial - remove trailing spacesStrangerke
2012-08-28TONY: Fix some for and if statements with bad coding styleStrangerke
2012-08-28TONY: Replace overlapping memcpy with memmoveWillem Jan Palenstijn
2012-08-28TONY: Remove most of the remaining global functions.Alyssa Milburn
2012-08-28TONY: Remove unnecessary mainloop mutex.Alyssa Milburn
Also, all the related freeze functions/members.
2012-08-28TONY: Implement some forgotten sound/music functions.Alyssa Milburn
2012-08-28TONY: Fix crash with TA_PERORATE.Alyssa Milburn
2012-08-28TONY: Get rid of RMDataStream.Alyssa Milburn
2012-08-28TONY: Remove unused data dumping code.Alyssa Milburn
2012-08-28TONY: Fix stringLen for empty strings.Alyssa Milburn
2012-08-28TONY: Rename curDialog to g_curDialog.Alyssa Milburn
2012-08-28TONY: Improve Take/ReleaseOwnership.Alyssa Milburn
This releases all held 'mutexes' when processes die, and keeps track of the lock count too, just in case.
2012-08-27TONY: Remove more unused bits.Alyssa Milburn
2012-08-27TONY: Translate some minor Italian commentsWillem Jan Palenstijn
2012-08-27TONY: Remove various bits of unused code.Alyssa Milburn
2012-08-27TONY: Fix width of flipped dirty rects.Alyssa Milburn
2012-08-27TONY: _rgb buffer is no longer staticStrangerke
2012-08-27TONY: USe default fonts (Italian/English) when the language is unhandled ↵Strangerke
instead of erroring out
2012-08-26TONY: Add English in loadTonyDatStrangerke
2012-08-26TONY: Move font related arrays to a DAT fileStrangerke
2012-08-25TONY: Fix exiting from the save menu.Alyssa Milburn
We have to copy _nState before it gets reset in closeState.
2012-08-25TONY: Reset _hEndOfBuffer when restarting sounds.Alyssa Milburn
2012-08-25TONY: Fix Take/ReleaseOwnership.Alyssa Milburn
2012-08-25TONY: Make the verb menu sound effects playTorbjörn Andersson
At least for now, preloading utility sound effects *is* needed in ScummVM. And since we now have preloading of both normal and utility sound effects, I've unstubbed the unloading functions as well.
2012-08-25TONY: Replace copyMemory with memcpy.Alyssa Milburn
2012-08-25TONY: Get rid of RMString.Alyssa Milburn
2012-08-25TONY: Convert more strings to Common::String.Alyssa Milburn
2012-08-25TONY: Store savegame names with Common::String.Alyssa Milburn
2012-08-25TONY: Remove unused members of RMTextItemName.Alyssa Milburn
2012-08-25TONY: Use Common::String in writeText.Alyssa Milburn
This uses an array of lines rather than trying to stick nulls into the string, and so fixes wrapping on hyphens (which overwrote the character before the hyphen). Thanks to eriktorbjorn for both finding the bug and working out what was going wrong.