aboutsummaryrefslogtreecommitdiff
path: root/graphics/cursorman.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/cursorman.h')
-rw-r--r--graphics/cursorman.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/graphics/cursorman.h b/graphics/cursorman.h
index b6afa10fa7..9eaca57a09 100644
--- a/graphics/cursorman.h
+++ b/graphics/cursorman.h
@@ -164,7 +164,10 @@ public:
private:
friend class Common::Singleton<SingletonBaseType>;
- CursorManager();
+ // Even though this is basically the default constructor we implement it
+ // ourselves, so it is private and thus there is no way to create this class
+ // except from the Singleton code.
+ CursorManager() {}
struct Cursor {
byte *_data;