Cleaned up VideoSystem initalisation
[supertux.git] / src / video / renderer.hpp
index 41e2470..b9d4ec3 100644 (file)
@@ -57,11 +57,6 @@ public:
   virtual Vector to_logical(int physical_x, int physical_y) = 0;
   virtual void set_gamma(float gamma) = 0;
   virtual SDL_Window* get_window() const = 0;
-
-  static Renderer* instance() { assert(instance_); return instance_; }
-
-protected:
-  static Renderer* instance_;
 };
 
 #endif