From 3c647334b08e003b844be3e58941cb3c81b83c62 Mon Sep 17 00:00:00 2001 From: Laserlicht <13953785+Laserlicht@users.noreply.github.com> Date: Sat, 7 Oct 2023 23:49:58 +0200 Subject: [PATCH] remove other pr --- client/CVideoHandler.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/client/CVideoHandler.h b/client/CVideoHandler.h index c2f4471d4..f4b3ad0f0 100644 --- a/client/CVideoHandler.h +++ b/client/CVideoHandler.h @@ -23,7 +23,6 @@ public: virtual bool nextFrame()=0; virtual void show(int x, int y, SDL_Surface *dst, bool update = true)=0; virtual void redraw(int x, int y, SDL_Surface *dst, bool update = true)=0; //reblits buffer - virtual VideoPath videoName()=0; virtual bool wait()=0; virtual int curFrame() const =0; virtual int frameCount() const =0; @@ -48,7 +47,6 @@ public: void redraw( int x, int y, SDL_Surface *dst, bool update = true ) override {}; void show( int x, int y, SDL_Surface *dst, bool update = true ) override {}; bool nextFrame() override {return false;}; - VideoPath videoName() override {return VideoPath();}; void close() override {}; bool wait() override {return false;}; bool open(const VideoPath & name, bool scale = false) override {return false;}; @@ -110,8 +108,6 @@ public: std::pair, si64> getAudio(const VideoPath & videoToOpen) override; - VideoPath videoName() override {return fname;}; - //TODO: bool wait() override {return false;}; int curFrame() const override {return -1;};