From: K.Ohta Date: Thu, 23 May 2019 20:35:35 +0000 (+0900) Subject: [VM][PC9801][DISPLAY] Commentout debug message spam. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=1d69619732e8060ea412d5978fa530df51fd592e;p=csp-qt%2Fcommon_source_project-fm7.git [VM][PC9801][DISPLAY] Commentout debug message spam. --- 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;