summaryrefslogtreecommitdiff
path: root/modules/theora
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-05-19 11:24:58 +0200
committerRémi Verschelde <rverschelde@gmail.com>2020-05-19 11:24:58 +0200
commitca3192d18abaa983fd3e8d5949ddc0ad1f1f88e6 (patch)
tree345ae04a473a971465e9bcf6eb5ef7c32a9ee2a3 /modules/theora
parent74b5d6839aa2008ba5cf0b71be156cf41494e8b3 (diff)
Style: Fix unnecessary semicolons that confused clang-format
Diffstat (limited to 'modules/theora')
-rw-r--r--modules/theora/video_stream_theora.cpp11
1 files changed, 4 insertions, 7 deletions
diff --git a/modules/theora/video_stream_theora.cpp b/modules/theora/video_stream_theora.cpp
index 4d83e6a4a5..498391e44a 100644
--- a/modules/theora/video_stream_theora.cpp
+++ b/modules/theora/video_stream_theora.cpp
@@ -581,9 +581,8 @@ bool VideoStreamPlaybackTheora::is_paused() const {
return paused;
};
-void VideoStreamPlaybackTheora::set_loop(bool p_enable){
-
-};
+void VideoStreamPlaybackTheora::set_loop(bool p_enable) {
+}
bool VideoStreamPlaybackTheora::has_loop() const {
return false;
@@ -605,10 +604,8 @@ float VideoStreamPlaybackTheora::get_playback_position() const {
return get_time();
};
-void VideoStreamPlaybackTheora::seek(float p_time){
-
- // no
-};
+void VideoStreamPlaybackTheora::seek(float p_time) {
+}
void VideoStreamPlaybackTheora::set_mix_callback(AudioMixCallback p_callback, void *p_userdata) {
mix_callback = p_callback;