From 1d69619732e8060ea412d5978fa530df51fd592e Mon Sep 17 00:00:00 2001 From: "K.Ohta" Date: Fri, 24 May 2019 05:35:35 +0900 Subject: [PATCH] [VM][PC9801][DISPLAY] Commentout debug message spam. --- source/src/vm/pc9801/display.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/src/vm/pc9801/display.cpp b/source/src/vm/pc9801/display.cpp index aff472796..68d6d16de 100644 --- a/source/src/vm/pc9801/display.cpp +++ b/source/src/vm/pc9801/display.cpp @@ -2924,7 +2924,7 @@ void DISPLAY::draw_gfx_screen() _width <<= 4; if(_width < 0) _width = 0; if(_width > SCREEN_WIDTH) _width = SCREEN_WIDTH; - out_debug_log("WxH: %dx%d", _width, _height); + //out_debug_log("WxH: %dx%d", _width, _height); for(int i = 0, ytop = 0; i < 4; i++) { uint32_t ra = ra_gfx[i * 4]; ra |= ra_gfx[i * 4 + 1] << 8; -- 2.11.0