From d0b2d840dafd630aa7ce104678f10b2df6c67e9f Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 13 Feb 2016 20:57:41 -0500 Subject: [PATCH] A minor fix to data queuing. Display still absent. --- Outputs/CRT/CRTBuilders.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Outputs/CRT/CRTBuilders.cpp b/Outputs/CRT/CRTBuilders.cpp index 701293aad..2ecc499b0 100644 --- a/Outputs/CRT/CRTBuilders.cpp +++ b/Outputs/CRT/CRTBuilders.cpp @@ -45,7 +45,7 @@ void CRT::CRTInputBufferBuilder::allocate_write_area(size_t required_length) if(_next_write_x_position + required_length + 2 > CRTInputBufferBuilderWidth) { _next_write_x_position = 0; - _next_write_y_position = (_next_write_y_position+1)%CRTInputBufferBuilderWidth; + _next_write_y_position = (_next_write_y_position+1)%CRTInputBufferBuilderHeight; } _write_x_position = _next_write_x_position + 1;