Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-07-23 | DREAMWEB: 'getnumber' ported to C++ | Bertrand Augereau | |
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 | DEVTOOLS: Fix typos and formatting in create_toon | Matthew Hoops | |
2011-07-19 | DREAMWEB: Add ScummVM headers, remove SVN keywords. | Eugene Sandulenko | |
2011-07-19 | Merge pull request #48 from tramboi/master | Eugene Sandulenko | |
DREAMWEB: More porting into C++ | |||
2011-07-19 | CREATE_PROJECT: Enabled the new Bink video support feature | Filippos Karapetis | |
2011-07-18 | DREAMWEB: Blacklisted 'kernchars' and 'getnextword' | Bertrand Augereau | |
2011-07-18 | DREAMWEB: initman reversed | Bertrand Augereau | |
2011-07-18 | DREAMWEB: walking blacklisted | Bertrand Augereau | |
2011-07-18 | DREAMWEB: Blacklisted liftsprite | Bertrand Augereau | |
2011-07-18 | DREAMWEB: dodoor blacklisted | 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-17 | DREAMWEB: The generator includes a file for custom structs and a file for ↵ | Bertrand Augereau | |
custom function definitions It also generates C++ symbols for asm proc addresses | |||
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-07-09 | CREATE_PROJECT: Quote parameters in MSVC10 post-build step. | Alyssa Milburn | |
Also, do the same commands for Release and Debug. | |||
2011-07-04 | CREATE_PROJECT: Remove copying of README-SDL in postbuild command script | Littleboy | |
2011-07-03 | CREDITS: Mark waltervn as retired | Matthew Hoops | |
As requested by him | |||
2011-07-01 | GRAPHICS: Rename NewFont to BdfFont. | Johannes Schickel | |
2011-07-01 | GRAPHICS: Move NewFont code to a separate file. | Johannes Schickel | |
2011-07-01 | CREATE_PROJECT: Update with new location of NSIS script and updated parameters | Littleboy | |
2011-07-01 | TOOLS: Update NSIS script location | Littleboy | |
2011-06-30 | CREDITS: Update my status to active again. | unknown | |
2011-06-25 | DREAMWEB: Removed workaround of invalid size of extext data | Vladimir Menshakov | |
2011-06-25 | DREAMWEB: Replaced foreign-guarded code with "foreignrelease" variable, ↵ | Vladimir Menshakov | |
added modifychar stub | |||
2011-06-25 | DREAMWEB: Fixed quit from keypad screen | Vladimir Menshakov | |
2011-06-25 | DREAMWEB: Fixed keypad animation | Vladimir Menshakov | |
2011-06-24 | DREAMWEB: Fixed continuing to another procedure. (axe misuse crash) | Vladimir Menshakov | |
2011-06-24 | DREAMWEB: Fixed quit() from dialogue | Vladimir Menshakov | |
2011-06-23 | DREAMWEB: Added subtitle option | Vladimir Menshakov | |
2011-06-23 | CREDITS: Add real name of serga per his request | Eugene Sandulenko | |
2011-06-22 | DREAMWEB: frameoutv becomes a native function | Bertrand Augereau | |
2011-06-22 | Merge pull request #26 from Littleboy/taskbar | Eugene Sandulenko | |
Taskbar integration | |||
2011-06-22 | CREDITS: Mark myself as retired | Max Horn | |
2011-06-22 | DREAMWEB: Fix bug in tasmrecover causing load/save mixup | Willem Jan Palenstijn | |
This is a regression from c1b9adb6912 and (my commit) 287c23f1263c. It is not safe to remove opcodes from proc.stmts since labels are sometimes referenced by their offset in the list. So, instead they are now replaced by op._nop. This fixes kLoadingorsave not being set in doload(), which was visible when going to the load game menu from the startup menu. | |||
2011-06-21 | DREAMWEB: Remove control char from source | Willem Jan Palenstijn | |
2011-06-21 | Merge branch 'dreamsrc' | Willem Jan Palenstijn | |
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 | DREAMWEB: Remove convertkey() | eriktorbjorn | |
This function was responsible for filtering invalid keys (e.g. in savegame names), and was only used by keyboardread(). This filtering is done by processEvents() instead. | |||
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]*$//' | |||
2011-06-19 | DREAMWEB: Remove control chars from source | Willem Jan Palenstijn | |
2011-06-19 | DREAMWEB: Added crash workaround | Vladimir Menshakov | |
2011-06-19 | DREAMWEB: Fixed quit from travel screen | Vladimir Menshakov | |
2011-06-19 | DREAMWEB: Removed getback = 4 hack, added clean exit from every menus and ↵ | Vladimir Menshakov | |
credits | |||
2011-06-18 | DREAMWEB: do not call updatescreen before quitting, fixed crash on ↵ | Vladimir Menshakov | |
dosreturn, cleaned up dosreturn stub | |||
2011-06-18 | DREAMWEB: implemented clean exit | Vladimir Menshakov | |
2011-06-17 | DREAMWEB: clear cx after rep movs/stos commands | Vladimir Menshakov | |
2011-06-17 | DREAMWEB: replaced generated code with c++ style stubs | Vladimir Menshakov | |
2011-06-16 | DREAMWEB: Re-optimize unbounded code blocks | Willem Jan Palenstijn | |
This gets rid of some unused labels. We need to be careful not be optimize too much, as that could remove the very label the unbounded block was added for. |