aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/gfx/opengl/openglgfx.h
diff options
context:
space:
mode:
authorEugene Sandulenko2010-08-18 12:57:47 +0000
committerEugene Sandulenko2010-10-12 22:55:59 +0000
commitbe44216e5c1d74879d7843215ce1cd3f488b4db8 (patch)
treecd49961f2fe9b1ea641e2e57d90b3d8a315123ea /engines/sword25/gfx/opengl/openglgfx.h
parent485ff15d23b3ae9545f5c9df794f1326185eae7a (diff)
downloadscummvm-rg350-be44216e5c1d74879d7843215ce1cd3f488b4db8.tar.gz
scummvm-rg350-be44216e5c1d74879d7843215ce1cd3f488b4db8.tar.bz2
scummvm-rg350-be44216e5c1d74879d7843215ce1cd3f488b4db8.zip
SWORD25: eliminated BS_ prefix in all but kernel/
svn-id: r53259
Diffstat (limited to 'engines/sword25/gfx/opengl/openglgfx.h')
-rw-r--r--engines/sword25/gfx/opengl/openglgfx.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/sword25/gfx/opengl/openglgfx.h b/engines/sword25/gfx/opengl/openglgfx.h
index 4a7994a92c..c96fa381d6 100644
--- a/engines/sword25/gfx/opengl/openglgfx.h
+++ b/engines/sword25/gfx/opengl/openglgfx.h
@@ -87,7 +87,7 @@ public:
// Debugging Methoden
// ------------------
- virtual void DrawDebugLine(const BS_Vertex &Start, const BS_Vertex &End, unsigned int Color);
+ virtual void DrawDebugLine(const Vertex &Start, const Vertex &End, unsigned int Color);
// Persistenz Methoden
// -------------------
@@ -103,14 +103,14 @@ private:
std::auto_ptr<RenderObjectManager> m_RenderObjectManagerPtr;
struct DebugLine {
- DebugLine(const BS_Vertex &_Start, const BS_Vertex &_End, unsigned int _Color) :
+ DebugLine(const Vertex &_Start, const Vertex &_End, unsigned int _Color) :
Start(_Start),
End(_End),
Color(_Color) {}
DebugLine() {}
- BS_Vertex Start;
- BS_Vertex End;
+ Vertex Start;
+ Vertex End;
unsigned int Color;
};