summaryrefslogtreecommitdiff
path: root/src/graphicsvertexes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphicsvertexes.h')
-rw-r--r--src/graphicsvertexes.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/graphicsvertexes.h b/src/graphicsvertexes.h
index 2ab54197d..d3905ba56 100644
--- a/src/graphicsvertexes.h
+++ b/src/graphicsvertexes.h
@@ -73,19 +73,19 @@ class OpenGLGraphicsVertexes
GLint *switchIntTexArray();
- std::vector<GLfloat*> &getFloatTexPool()
- { return mFloatTexPool; }
+ std::vector<GLfloat*> *getFloatTexPool()
+ { return &mFloatTexPool; }
- std::vector<GLint*> &getIntVertPool()
- { return mIntVertPool; }
+ std::vector<GLint*> *getIntVertPool()
+ { return &mIntVertPool; }
- std::vector<GLint*> &getIntTexPool()
- { return mIntTexPool; }
+ std::vector<GLint*> *getIntTexPool()
+ { return &mIntTexPool; }
void switchVp(int n);
- std::vector<int> &getVp()
- { return mVp; }
+ std::vector<int> *getVp()
+ { return &mVp; }
void init();