From cd06cc6d2c329ee06997b99e4ad70136a316f3bf Mon Sep 17 00:00:00 2001 From: Christian Speckner Date: Wed, 1 Aug 2018 23:12:45 +0200 Subject: [PATCH] Show the current image data in zoom widget. --- src/debugger/gui/TiaZoomWidget.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debugger/gui/TiaZoomWidget.cxx b/src/debugger/gui/TiaZoomWidget.cxx index 195ae4514..96663515d 100644 --- a/src/debugger/gui/TiaZoomWidget.cxx +++ b/src/debugger/gui/TiaZoomWidget.cxx @@ -256,7 +256,7 @@ void TiaZoomWidget::drawWidget(bool hilite) // Draw the zoomed image // 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 :) - const uInt8* currentFrame = instance().console().tia().frameBuffer(); + const uInt8* currentFrame = instance().console().tia().outputBuffer(); const int width = instance().console().tia().width(), wzoom = myZoomLevel << 1, hzoom = myZoomLevel;