aboutsummaryrefslogtreecommitdiffstats
path: root/src/menu/software_mouse_pointer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/menu/software_mouse_pointer.hpp')
-rw-r--r--src/menu/software_mouse_pointer.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/menu/software_mouse_pointer.hpp b/src/menu/software_mouse_pointer.hpp
index bb4db608..2706e335 100644
--- a/src/menu/software_mouse_pointer.hpp
+++ b/src/menu/software_mouse_pointer.hpp
@@ -31,6 +31,7 @@
#include "texture.hpp"
#include "timer.hpp"
#include "utils/rgba_color.hpp"
+#include "utils/disposer.hpp"
#include <boost/signals2.hpp>
#include <GL/gl.h>
@@ -41,11 +42,10 @@ namespace usdx
{
private:
GLfloat vertices[8];
- GLfloat texture[8];
RgbaColor color;
- Texture* texture_normal;
- Texture* texture_pressed;
+ Disposer<Texture>* texture_normal;
+ Disposer<Texture>* texture_pressed;
Timer* fade_inactive;