1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-08 04:20:09 +00:00

Small fix for AudioThumbnail. Minor internal clean-ups.

This commit is contained in:
Julian Storer 2010-12-05 18:20:32 +00:00
parent 99085429b5
commit c3b257a088
13 changed files with 1446 additions and 1489 deletions

View file

@ -27,8 +27,6 @@
// compiled on its own).
#if JUCE_INCLUDED_FILE
extern void juce_initialiseThreadEvents();
//==============================================================================
void Logger::outputDebugString (const String& text)
@ -115,8 +113,6 @@ const String SystemStats::getCpuVendor()
//==============================================================================
void SystemStats::initialiseStats()
{
juce_initialiseThreadEvents();
cpuFlags.hasMMX = IsProcessorFeaturePresent (PF_MMX_INSTRUCTIONS_AVAILABLE) != 0;
cpuFlags.hasSSE = IsProcessorFeaturePresent (PF_XMMI_INSTRUCTIONS_AVAILABLE) != 0;
cpuFlags.hasSSE2 = IsProcessorFeaturePresent (PF_XMMI64_INSTRUCTIONS_AVAILABLE) != 0;