From f1b0e8f29751dbccdf4ce9d6ea7fc4562196aa84 Mon Sep 17 00:00:00 2001 From: Kovensky Date: Sat, 20 Feb 2010 18:07:33 -0300 Subject: [PATCH] Make CPU model line visible by default --- cpudetect.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpudetect.c b/cpudetect.c index 592eb65090..c021abcea8 100644 --- a/cpudetect.c +++ b/cpudetect.c @@ -143,9 +143,9 @@ void GetCpuCaps( CpuCaps *caps) ptmpstr=tmpstr=GetCpuFriendlyName(regs, regs2); while(*ptmpstr == ' ') // strip leading spaces ptmpstr++; - mp_msg(MSGT_CPUDETECT,MSGL_V,"CPU: %s ", ptmpstr); + mp_msg(MSGT_CPUDETECT,MSGL_INFO,"CPU: %s ", ptmpstr); free(tmpstr); - mp_msg(MSGT_CPUDETECT,MSGL_V,"(Family: %d, Model: %d, Stepping: %d)\n", + mp_msg(MSGT_CPUDETECT,MSGL_INFO,"(Family: %d, Model: %d, Stepping: %d)\n", caps->cpuType, caps->cpuModel, caps->cpuStepping); } -- 2.11.4.GIT