mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
maintenance: memory leak fix, default constructors, minor syntax cleanups
This commit is contained in:
@@ -53,7 +53,8 @@ struct openal_source {
|
||||
bool is_looping { false };
|
||||
sound_properties properties;
|
||||
sync_state sync { sync_state::good };
|
||||
|
||||
// constructors
|
||||
openal_source() = default;
|
||||
// methods
|
||||
template <class Iterator_>
|
||||
openal_source &
|
||||
@@ -102,6 +103,8 @@ class openal_renderer {
|
||||
friend class opengl_renderer;
|
||||
|
||||
public:
|
||||
// constructors
|
||||
openal_renderer() = default;
|
||||
// destructor
|
||||
~openal_renderer();
|
||||
// methods
|
||||
|
||||
Reference in New Issue
Block a user