Ver código fonte

Update ResourceManager.h

Daniele Bartolini 12 anos atrás
pai
commit
fc729f394e
1 arquivos alterados com 6 adições e 6 exclusões
  1. 6 6
      src/ResourceManager.h

+ 6 - 6
src/ResourceManager.h

@@ -161,14 +161,14 @@ private:
 
 	// Background loading thread
 	bool 					m_background_thread_should_run;
-	Thread					m_thread;
+	os::Thread				m_thread;
 
-	mutable Mutex			m_loading_mutex;
-	Cond 					m_loading_requests;
-	Cond 					m_all_loaded;
+	mutable os::Mutex		m_loading_mutex;
+	os::Cond 				m_loading_requests;
+	os::Cond 				m_all_loaded;
 
-	Mutex					m_loaded_mutex;
-	mutable Mutex			m_resources_mutex;
+	os::Mutex				m_loaded_mutex;
+	mutable os::Mutex		m_resources_mutex;
 
 	friend class			Device;
 };