Skip to content

Commit

Permalink
Fix Theora/Webm loaders declaring binary extension
Browse files Browse the repository at this point in the history
RES_BASE_EXTENSION is only to declare our proprietary binary formats
(e.g. "scn", "res", etc.).

Fixes godotengine#20395.
  • Loading branch information
akien-mga committed Aug 16, 2018
1 parent a2abe76 commit 333999c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion modules/theora/video_stream_theora.h
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,6 @@ class VideoStreamPlaybackTheora : public VideoStreamPlayback {
class VideoStreamTheora : public VideoStream {

GDCLASS(VideoStreamTheora, VideoStream);
RES_BASE_EXTENSION("ogv");

String file;
int audio_track;
Expand Down
1 change: 0 additions & 1 deletion modules/webm/video_stream_webm.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ class VideoStreamPlaybackWebm : public VideoStreamPlayback {
class VideoStreamWebm : public VideoStream {

GDCLASS(VideoStreamWebm, VideoStream);
RES_BASE_EXTENSION("webm");

String file;
int audio_track;
Expand Down

0 comments on commit 333999c

Please sign in to comment.