mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-15 16:44:36 +00:00
cleanup console spam
This commit is contained in:
parent
65850df9bd
commit
014e319aa8
3 changed files with 4 additions and 41 deletions
|
|
@ -110,15 +110,9 @@ void Math::init(U32 properties)
|
||||||
Con::printf(" Installing Standard C extensions");
|
Con::printf(" Installing Standard C extensions");
|
||||||
mInstallLibrary_C();
|
mInstallLibrary_C();
|
||||||
|
|
||||||
|
Con::printf( " Installing ISA extensions" );
|
||||||
math_backend::install_from_cpu_flags(properties);
|
math_backend::install_from_cpu_flags(properties);
|
||||||
|
|
||||||
#ifdef TORQUE_CPU_X86
|
|
||||||
if( properties & CPU_PROP_SSE )
|
|
||||||
{
|
|
||||||
Con::printf( " Installing SSE extensions" );
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
Con::printf(" ");
|
Con::printf(" ");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -91,6 +91,7 @@ void Math::init(U32 properties)
|
||||||
Con::printf(" Installing Standard C extensions");
|
Con::printf(" Installing Standard C extensions");
|
||||||
mInstallLibrary_C();
|
mInstallLibrary_C();
|
||||||
|
|
||||||
|
Con::printf(" Installing ISA extensions");
|
||||||
math_backend::install_from_cpu_flags(properties);
|
math_backend::install_from_cpu_flags(properties);
|
||||||
|
|
||||||
#if defined(TORQUE_CPU_X32) || defined(TORQUE_CPU_X64)
|
#if defined(TORQUE_CPU_X32) || defined(TORQUE_CPU_X64)
|
||||||
|
|
@ -98,24 +99,6 @@ void Math::init(U32 properties)
|
||||||
mInstallLibrary_ASM();
|
mInstallLibrary_ASM();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (properties & CPU_PROP_FPU)
|
|
||||||
{
|
|
||||||
Con::printf(" Installing FPU extensions");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (properties & CPU_PROP_MMX)
|
|
||||||
{
|
|
||||||
Con::printf(" Installing MMX extensions");
|
|
||||||
}
|
|
||||||
|
|
||||||
#if !defined(__MWERKS__) || (__MWERKS__ >= 0x2400)
|
|
||||||
if (properties & CPU_PROP_SSE)
|
|
||||||
{
|
|
||||||
Con::printf(" Installing SSE extensions");
|
|
||||||
}
|
|
||||||
#endif //mwerks>2.4
|
|
||||||
|
|
||||||
Con::printf(" ");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -98,26 +98,12 @@ void Math::init(U32 properties)
|
||||||
Con::printf(" Installing Standard C extensions");
|
Con::printf(" Installing Standard C extensions");
|
||||||
mInstallLibrary_C();
|
mInstallLibrary_C();
|
||||||
|
|
||||||
|
Con::printf(" Installing ISA extensions");
|
||||||
math_backend::install_from_cpu_flags(properties);
|
math_backend::install_from_cpu_flags(properties);
|
||||||
|
|
||||||
Con::printf(" Installing Assembly extensions");
|
Con::printf(" Installing Assembly extensions");
|
||||||
mInstallLibrary_ASM();
|
mInstallLibrary_ASM();
|
||||||
|
|
||||||
if (properties & CPU_PROP_FPU)
|
|
||||||
{
|
|
||||||
Con::printf(" Installing FPU extensions");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (properties & CPU_PROP_MMX)
|
|
||||||
{
|
|
||||||
Con::printf(" Installing MMX extensions");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (properties & CPU_PROP_SSE)
|
|
||||||
{
|
|
||||||
Con::printf(" Installing SSE extensions");
|
|
||||||
}
|
|
||||||
|
|
||||||
Con::printf(" ");
|
Con::printf(" ");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue