diff --git a/src/core/Cpu.cpp b/src/core/Cpu.cpp index 7e72e5a8f..726ffae32 100644 --- a/src/core/Cpu.cpp +++ b/src/core/Cpu.cpp @@ -22,11 +22,11 @@ * */ +#include #include "Cpu.h" #include -#include #include @@ -442,7 +442,7 @@ void init() #endif if( features & SSE ) { - fprintf( stderr, "Using SSE optimized routines\n" ); + qDebug( "Using SSE optimized routines" ); memCpy = memCpySSE; memClear = memClearSSE; bufApplyGain = bufApplyGainSSE; @@ -455,7 +455,7 @@ void init() } if( features & SSE2 ) { - fprintf( stderr, "Using SSE2 optimized routines\n" ); + qDebug( "Using SSE2 optimized routines" ); memCpy = memCpySSE2; memClear = memClearSSE2; convertToS16 = convertToS16SSE2;