summaryrefslogtreecommitdiff
path: root/servers/spatial_sound_2d
diff options
context:
space:
mode:
Diffstat (limited to 'servers/spatial_sound_2d')
-rw-r--r--servers/spatial_sound_2d/spatial_sound_2d_server_sw.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/servers/spatial_sound_2d/spatial_sound_2d_server_sw.h b/servers/spatial_sound_2d/spatial_sound_2d_server_sw.h
index fc595b7df0..ed28ec912e 100644
--- a/servers/spatial_sound_2d/spatial_sound_2d_server_sw.h
+++ b/servers/spatial_sound_2d/spatial_sound_2d_server_sw.h
@@ -66,7 +66,7 @@ class SpatialSound2DServerSW : public SpatialSound2DServer {
struct Room;
- struct Space {
+ struct Space : public RID_Data {
RID default_room;
Set<RID> rooms;
@@ -78,7 +78,7 @@ class SpatialSound2DServerSW : public SpatialSound2DServer {
mutable RID_Owner<Space> space_owner;
- struct Room {
+ struct Room : public RID_Data {
RID space;
Matrix32 transform;
Matrix32 inverse_transform;
@@ -96,7 +96,7 @@ class SpatialSound2DServerSW : public SpatialSound2DServer {
- struct Source {
+ struct Source : public RID_Data {
struct Voice {
@@ -160,7 +160,7 @@ class SpatialSound2DServerSW : public SpatialSound2DServer {
mutable RID_Owner<Source> source_owner;
- struct Listener {
+ struct Listener : public RID_Data {
RID space;
Matrix32 transform;