OSDN Git Service

[VM][PC9801][DISPLAY] Commentout debug message spam.
authorK.Ohta <whatisthis.sowhat@gmail.com>
Thu, 23 May 2019 20:35:35 +0000 (05:35 +0900)
committerK.Ohta <whatisthis.sowhat@gmail.com>
Thu, 23 May 2019 20:35:35 +0000 (05:35 +0900)
source/src/vm/pc9801/display.cpp

index aff4727..68d6d16 100644 (file)
@@ -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;