Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-03 | Merge pull request #741 from wjp/sci-call | Willem Jan Palenstijn | |
SCI: Clean up some aspects of call handling | |||
2016-07-03 | GUI: Add checks in Widget::getBossClipRect() | Alexander Tkachev | |
Prints a warning if clipping area is invalid and fixes it. | |||
2016-07-03 | JANITORIAL: Fix a few warnings | Alexander Tkachev | |
2016-07-03 | JANITORIAL: Remove trailing spaces | Alexander Tkachev | |
2016-07-03 | GUI: Update scummmodern.zip | Alexander Tkachev | |
2016-07-03 | GUI: Use clipping everywhere | Alexander Tkachev | |
2016-07-03 | GUI: Fix PopUpDialog | Alexander Tkachev | |
2016-07-03 | GUI: Fix blitAlphaBitmapClip() | Alexander Tkachev | |
2016-07-03 | GUI: Add blipClip() | Alexander Tkachev | |
2016-07-03 | GUI: Add blitAlphaBitmapClip() | Alexander Tkachev | |
2016-07-03 | GUI: Add fillSurfaceClip() | Alexander Tkachev | |
2016-07-03 | GUI: Add drawCrossClip() | Alexander Tkachev | |
2016-07-03 | GUI: Fix drawRoundedSquareClip() | Alexander Tkachev | |
2016-07-03 | GUI: Add drawTabClip() | Alexander Tkachev | |
2016-07-03 | GUI: Add drawBeveledSquareClip() | Alexander Tkachev | |
2016-07-03 | GUI: Add drawLineClip() | Alexander Tkachev | |
2016-07-03 | GUI: Add drawCircle() | Alexander Tkachev | |
2016-07-03 | GUI: Add drawSquareClip() | Alexander Tkachev | |
2016-07-03 | GUI: Add VectorRendererSpec::drawTriangleClip() | Alexander Tkachev | |
2016-07-03 | GUI: Fix TabWidget's padding in layout_lowres.stx | Alexander Tkachev | |
2016-07-03 | GUI: Add ThemeLayoutTabWidget | Alexander Tkachev | |
2016-07-03 | GUI: Fix Dialog's and TabWidget's reflowLayout() | Alexander Tkachev | |
2016-07-03 | GUI: Hide scrollbar in ScrollContainerWidget when needed | Alexander Tkachev | |
2016-07-03 | GUI: Fix ScrollContainerWidget's reflowLayout() | Alexander Tkachev | |
2016-07-03 | GUI: Update ScrollContainerWidget | Alexander Tkachev | |
2016-07-03 | GUI: Fix ScrollContainerWidget look a bit | Alexander Tkachev | |
2016-07-03 | GUI: Add drawRoundedSquareShadowClip() | Alexander Tkachev | |
2016-07-03 | GUI: Remove unnecessary debug output | Alexander Tkachev | |
2016-07-03 | GUI: Make ScrollContainerWidget do full redraw | Alexander Tkachev | |
2016-07-03 | GUI: Fix ThemeItemTextData's dirty rectangle | Alexander Tkachev | |
2016-07-03 | GUI: Make ScrollContainerWidget hide children | Alexander Tkachev | |
2016-07-03 | GUI: Make PopUpWidget clip | Alexander Tkachev | |
2016-07-03 | GUI: drawRoundedSquareClip() | Alexander Tkachev | |
2016-07-03 | GUI: clippingRect propagated deeper | Alexander Tkachev | |
2016-07-03 | GUI: Prepare button to be clipped | Alexander Tkachev | |
2016-07-03 | GUI: Remove _clippingArea from ScrollContainer | Alexander Tkachev | |
2016-07-03 | GUI: Cleanup in ScrollContainer | Alexander Tkachev | |
2016-07-03 | GUI: Add ScrollContainer | Alexander Tkachev | |
2016-07-03 | GUI: Use boss's x/y/w/h instead of clippingArea | Alexander Tkachev | |
2016-07-03 | Merge pull request #772 from BenCastricum/bugfixes | Eugene Sandulenko | |
MISC: Bugfixes | |||
2016-07-02 | SCI32: Expose graphics throttling code | Colin Snover | |
Controls that manage their own event loops and call frameOut directly generally need to sleep in order to avoid 100% CPU, just like the main VM event loop. | |||
2016-07-02 | SCI32: Document _remapOccurred flag | Colin Snover | |
2016-07-02 | SCI32: Improve accuracy of frameout throttler | Colin Snover | |
2016-07-02 | SCI32: Add const to getCurrentBuffer | Colin Snover | |
2016-07-02 | SCI32: Document ScreenItem::_insetRect | Colin Snover | |
2016-07-02 | SCI32: Fix dropping events in kEditText | Willem Jan Palenstijn | |
2016-07-02 | SCI: Remove presumably long-outdated FIXME | Willem Jan Palenstijn | |
2016-07-02 | SCI: Remove unexpected side effect from ExecStack constructor | Willem Jan Palenstijn | |
The ExecStack constructor set argp[0] to argc before. This is now moved to the caller, to make this action more explicit. | |||
2016-07-02 | SCI: Remove unclear &rest handling | Willem Jan Palenstijn | |
Modifying a value above the stack pointer doesn't seem to make much sense. This was added in FreeSCI back in 2002 in a pair of commits that did not make clear what the purpose of this was. My guess is that it attempted to adjust argc, but failed. This wouldn't have been noticed since argc was always set correctly by make_exec_stack_entry (which is now the ExecStack constructor). | |||
2016-07-02 | SCI: Improve kernel subfunction logging | Willem Jan Palenstijn | |
ExecStack now stores the kernel call number as well as the subfunction. This allows kStub and backtraces to log the actual subfunction called. The kernel call number in ExecStack used to be stored in the debugSelector field. It now has its own field, to avoid confusion. |