From bbbbefcd914fba21255483de69a235fb7932de93 Mon Sep 17 00:00:00 2001 From: SarahW Date: Thu, 16 Apr 2020 20:06:17 +0100 Subject: [PATCH] Remove broken additional SVGA status print from Voodoo status. Add a newline after the SB status to make SB + Voodoo read better. --- src/sound_sb_dsp.c | 1 + src/vid_voodoo.c | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/sound_sb_dsp.c b/src/sound_sb_dsp.c index c7b575b..3edf0d6 100644 --- a/src/sound_sb_dsp.c +++ b/src/sound_sb_dsp.c @@ -1385,4 +1385,5 @@ void sb_dsp_add_status_info(char *s, int max_len, sb_dsp_t *dsp) sprintf(temps, "SB playback frequency : %iHz\n", freq); strncat(s, temps, max_len); } + strncat(s, "\n", max_len); } diff --git a/src/vid_voodoo.c b/src/vid_voodoo.c index 157d62c..36baf19 100644 --- a/src/vid_voodoo.c +++ b/src/vid_voodoo.c @@ -7477,8 +7477,6 @@ static void voodoo_add_status_info(char *s, int max_len, void *p) if (!status_diff) status_diff = 1; - svga_add_status_info(s, max_len, &voodoo->svga); - pixel_count_current[0] = voodoo->pixel_count[0]; pixel_count_current[1] = voodoo->pixel_count[1]; texel_count_current[0] = voodoo->texel_count[0];