Adrien Bertrand

Results 275 comments of Adrien Bertrand

Current implementation draws a [black layer with alpha on top of the raw image](https://github.com/CE-Programming/CEmu/blob/master/gui/qt/lcdwidget.cpp#L39-L43), and only the raw image is used for [screenshots](https://github.com/CE-Programming/CEmu/blob/master/gui/qt/lcdwidget.cpp#L91) and [captures](https://github.com/CE-Programming/CEmu/blob/master/gui/qt/lcdwidget.cpp#L158). Potential solution: use the context...

For screenshots, it's trivial, `LCDWidget::getImage()` should be: ```cpp QPixmap pixmap(size()); render(&pixmap); return pixmap.toImage(); ``` instead of ```cpp m_mutex.lock(); QImage ret(m_image); m_mutex.unlock(); return ret; ``` I'll commit that since it doesn't...

( Dev to be done in a `feature/basic-dbg` branch )

todo: think how/if #287 can help with TI-Basic debugging.

Added a few ideas in the "code viewer" part.

The UI being completely customizable, yes. Look at the setting for toggling the skin around the LCD, as well as the size. You can also hide the window borders/titles in...

Yes I noticed the outdated key issue but I doubt there is anything we can do ourselves about that since it's handled by the build server... Regarding the menu icon,...

Info for potential fix: @jacobly0 said "the disassembler reads the bytes out of order for that instruction and apparently the disassembly lists what bytes the disassembler read, not what bytes...

Tried the program today on latest CEmu master (with SPI), here's a comparison from @runer112's value on the left: | February | June | | --- | --- | |...

Thanks for the nice report, I'll check it out tonight.