Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Sound/Loader/ogg_loader.h')
-rw-r--r--Source/Sound/Loader/ogg_loader.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/Source/Sound/Loader/ogg_loader.h b/Source/Sound/Loader/ogg_loader.h
index 41ceecf8..6519a665 100644
--- a/Source/Sound/Loader/ogg_loader.h
+++ b/Source/Sound/Loader/ogg_loader.h
@@ -47,15 +47,15 @@ private:
public:
oggLoader(Path rel_path);
- virtual ~oggLoader();
+ ~oggLoader() override;
- virtual int stream_buffer_int16(char *buffer, int size);
- virtual unsigned long get_sample_count();
- virtual unsigned long get_channels();
- virtual int get_sample_rate();
- virtual int rewind();
- virtual bool is_at_end();
+ int stream_buffer_int16(char *buffer, int size) override;
+ unsigned long get_sample_count() override;
+ unsigned long get_channels() override;
+ int get_sample_rate() override;
+ int rewind() override;
+ bool is_at_end() override;
- virtual int64_t get_pcm_pos();
- virtual void set_pcm_pos( int64_t pos );
+ int64_t get_pcm_pos() override;
+ void set_pcm_pos( int64_t pos ) override;
};