Merge pull request #21084 from akien-mga/theora-webm-loading
Fix Theora/Webm loaders declaring binary extension
This commit is contained in:
commit
69694dde75
2 changed files with 0 additions and 2 deletions
|
@ -163,7 +163,6 @@ public:
|
||||||
class VideoStreamTheora : public VideoStream {
|
class VideoStreamTheora : public VideoStream {
|
||||||
|
|
||||||
GDCLASS(VideoStreamTheora, VideoStream);
|
GDCLASS(VideoStreamTheora, VideoStream);
|
||||||
RES_BASE_EXTENSION("ogv");
|
|
||||||
|
|
||||||
String file;
|
String file;
|
||||||
int audio_track;
|
int audio_track;
|
||||||
|
|
|
@ -109,7 +109,6 @@ private:
|
||||||
class VideoStreamWebm : public VideoStream {
|
class VideoStreamWebm : public VideoStream {
|
||||||
|
|
||||||
GDCLASS(VideoStreamWebm, VideoStream);
|
GDCLASS(VideoStreamWebm, VideoStream);
|
||||||
RES_BASE_EXTENSION("webm");
|
|
||||||
|
|
||||||
String file;
|
String file;
|
||||||
int audio_track;
|
int audio_track;
|
||||||
|
|
Loading…
Reference in a new issue