mirror of https://github.com/stella-emu/stella.git
Show the current image data in zoom widget.
This commit is contained in:
parent
766b6cd566
commit
cd06cc6d2c
|
@ -256,7 +256,7 @@ void TiaZoomWidget::drawWidget(bool hilite)
|
||||||
// Draw the zoomed image
|
// Draw the zoomed image
|
||||||
// This probably isn't as efficient as it can be, but it's a small area
|
// This probably isn't as efficient as it can be, but it's a small area
|
||||||
// and I don't have time to make it faster :)
|
// and I don't have time to make it faster :)
|
||||||
const uInt8* currentFrame = instance().console().tia().frameBuffer();
|
const uInt8* currentFrame = instance().console().tia().outputBuffer();
|
||||||
const int width = instance().console().tia().width(),
|
const int width = instance().console().tia().width(),
|
||||||
wzoom = myZoomLevel << 1,
|
wzoom = myZoomLevel << 1,
|
||||||
hzoom = myZoomLevel;
|
hzoom = myZoomLevel;
|
||||||
|
|
Loading…
Reference in New Issue