mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-19 12:20:57 +00:00
cleanup console spam
This commit is contained in:
parent
65850df9bd
commit
014e319aa8
3 changed files with 4 additions and 41 deletions
|
|
@ -91,6 +91,7 @@ void Math::init(U32 properties)
|
|||
Con::printf(" Installing Standard C extensions");
|
||||
mInstallLibrary_C();
|
||||
|
||||
Con::printf(" Installing ISA extensions");
|
||||
math_backend::install_from_cpu_flags(properties);
|
||||
|
||||
#if defined(TORQUE_CPU_X32) || defined(TORQUE_CPU_X64)
|
||||
|
|
@ -98,24 +99,6 @@ void Math::init(U32 properties)
|
|||
mInstallLibrary_ASM();
|
||||
#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(" ");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue