about summary refs log tree commit diff
path: root/src/engine/graphics.h
diff options
context:
space:
mode:
authoroy <Tom_Adams@web.de>2012-02-05 13:22:39 +0100
committeroy <Tom_Adams@web.de>2012-02-05 13:22:39 +0100
commit0c05b3bfa1f64239e9beddd9c97f8ef0844da165 (patch)
treec87ce9f09b7c83b930b32084cba6ba70b19377c4 /src/engine/graphics.h
parentd17ee055a250554e05abb0fcade04da85e85647b (diff)
downloadzcatch-0c05b3bfa1f64239e9beddd9c97f8ef0844da165.tar.gz
zcatch-0c05b3bfa1f64239e9beddd9c97f8ef0844da165.zip
fixed compiling with vs2008 (#932)
Diffstat (limited to 'src/engine/graphics.h')
-rw-r--r--src/engine/graphics.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/engine/graphics.h b/src/engine/graphics.h
index 46750e03..7f272497 100644
--- a/src/engine/graphics.h
+++ b/src/engine/graphics.h
@@ -5,7 +5,6 @@
 
 #include "kernel.h"
 
-#include <base/tl/threading.h>
 
 class CImageInfo
 {
@@ -139,7 +138,7 @@ public:
 	virtual void Swap() = 0;
 
 	// syncronization
-	virtual void InsertSignal(semaphore *pSemaphore) = 0;
+	virtual void InsertSignal(class semaphore *pSemaphore) = 0;
 	virtual bool IsIdle() = 0;
 	virtual void WaitForIdle() = 0;
 };