Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-07-28 | DREAMWEB: Fix (underlined object names) in 'printchar' parameter interpretation | Bertrand Augereau | |
2011-07-23 | DREAMWEB: Blacklisted 'usetimedtext', 'getundertimed' and 'putundertimed' | Bertrand Augereau | |
2011-07-23 | DREAMWEB: 'multiput' and 'multiget' get signatures | Bertrand Augereau | |
2011-07-23 | DREAMWEB: Less register usage in 'printslow' | Bertrand Augereau | |
2011-07-23 | DREAMWEB: 'printdirect' has a C++ signature | Bertrand Augereau | |
2011-07-23 | DREAMWEB: Less register usage in 'getnumber' | Bertrand Augereau | |
2011-07-23 | DREAMWEB: 'dumptextline' ported to C++ | Bertrand Augereau | |
2011-07-23 | DREAMWEB: Less register usage in 'printslow' | Bertrand Augereau | |
2011-07-23 | DREAMWEB: Useless register shuffling in printboth | Bertrand Augereau | |
2011-07-23 | DREAMWEB: Cleaning in 'printslow' | Bertrand Augereau | |
2011-07-23 | DREAMWEB: Cleaning of 'printasprite' | Bertrand Augereau | |
2011-07-23 | DREAMWEB: Cleaning of 'showframe' | Bertrand Augereau | |
2011-07-23 | DREAMWEB: 'printboth' ported to C++ | Bertrand Augereau | |
2011-07-23 | DREAMWEB: 'multidump' has a nicer signature | Bertrand Augereau | |
2011-07-23 | DREAMWEB: 'printslow' ported to C++ | Bertrand Augereau | |
2011-07-23 | DREAMWEB: Less registers, more params, in the text printing subsystem | Bertrand Augereau | |
2011-07-23 | DREAMWEB: 'printchar' ported to C++ | Bertrand Augereau | |
2011-07-23 | DREAMWEB: 'printdirect' ported to C++ | Bertrand Augereau | |
2011-07-23 | DREAMWEB: 'getnumber' ported to C++ | Bertrand Augereau | |
2011-07-20 | DREAMWEB: Made aboutturn() more readable | Eugene Sandulenko | |
2011-07-20 | DREAMWEB: Fix code formatting | Eugene Sandulenko | |
2011-07-20 | DREAMWEB: Blacklist and reimplement cancelch0() and cancelch1() | eriktorbjorn | |
Now any sound playing on the channels is stopped immediately. This fixes missing voice-overs in the intro, makes it possible to skip lines of conversation, and fixes a problem where the sound effect from the Altar Room would keep playing after leaving the room. Possibly other glitches as well. | |||
2011-07-19 | DREAMWEB: Add ScummVM headers, remove SVN keywords. | Eugene Sandulenko | |
2011-07-18 | DREAMWEB: Gave a proper signature to gextnextword | Bertrand Augereau | |
2011-07-18 | DREAMWEB: getnextword doesn't read one byte too far any more | Bertrand Augereau | |
2011-07-18 | DREAMWEB: Blacklisted 'kernchars' and 'getnextword' | Bertrand Augereau | |
2011-07-18 | DREAMWEB: Added resilience to frameoutv to avoid memory stomping at the TV ↵ | Bertrand Augereau | |
studio | |||
2011-07-18 | DREAMWEB: doorway and widedoor have signatures | Bertrand Augereau | |
2011-07-18 | DREAMWEB: aboutturn reversed | Bertrand Augereau | |
2011-07-18 | DREAMWEB: Reversed random sprite callback | Bertrand Augereau | |
2011-07-18 | DREAMWEB: initman reversed | Bertrand Augereau | |
2011-07-18 | DREAMWEB: walking blacklisted | Bertrand Augereau | |
2011-07-18 | DREAMWEB: mainman reversed | Bertrand Augereau | |
2011-07-18 | DREAMWEB: Blacklisted liftsprite | Bertrand Augereau | |
2011-07-18 | DREAMWEB: dodoor blacklisted | Bertrand Augereau | |
2011-07-18 | DREAMWEB: Sprite::b19 is Sprite::frame | Bertrand Augereau | |
2011-07-18 | DREAMWEB: steady and constant objects sprites callbacks | Bertrand Augereau | |
2011-07-18 | DREAMWEB: backobject reversed | Bertrand Augereau | |
2011-07-18 | DREAMWEB: Blacklisted frameoutbh and frameoutfx | Bertrand Augereau | |
2011-07-18 | DREAMWEB: showframe blacklisted | Bertrand Augereau | |
2011-07-18 | DREAMWEB: C++-isation of a part of the sprite subsystem | Bertrand Augereau | |
2011-07-16 | DREAMWEB: Clarify a comment in my previous commit slightly. | eriktorbjorn | |
2011-07-16 | DREAMWEB: Rewrote lockmon() to fix pausing/unpausing | eriktorbjorn | |
The original function would busy-wait for the user to press space again. We can't do that, of course, since we don't have interrupt- driven keyboard input. | |||
2011-06-25 | DREAMWEB: Save registers in vsync, like in original sources | Vladimir Menshakov | |
2011-06-25 | DREAMWEB: Reimplemented modifychar and language switching | Vladimir Menshakov | |
2011-06-25 | DREAMWEB: Replaced foreign-guarded code with "foreignrelease" variable, ↵ | Vladimir Menshakov | |
added modifychar stub | |||
2011-06-22 | DREAMWEB: frameoutv becomes a native function | Bertrand Augereau | |
2011-06-20 | DREAMWEB: Use kMaingamepal provided by the tasm-recover | eriktorbjorn | |
This should significantly decrease the risk of mysterious palette bugs in the PCX title cards after regenerating dreamgen.cpp | |||
2011-06-20 | DREAMWEB: Remove readabyte() and readoneblock() | eriktorbjorn | |
They were only used by the PCX decoder, which was rewritten some time ago to no longer use them. | |||
2011-06-20 | ALL: Remove trailing whitespaces | Max Horn | |
This tries to make our code a bit more compliant with our code formatting conventions. For future use, this is the command I used: git ls-files "*.cpp" "*.h" | xargs sed -i -e 's/[ \t]*$//' |