From d549135c8050b1a2ecc572bc7305b6769e9baebd Mon Sep 17 00:00:00 2001 From: untodesu Date: Sun, 29 Jun 2025 23:15:00 +0500 Subject: Sanity commit: replace deinit with shutdown --- src/game/client/voxel_sounds.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game/client/voxel_sounds.cc') diff --git a/src/game/client/voxel_sounds.cc b/src/game/client/voxel_sounds.cc index fd02a8e..996dc61 100644 --- a/src/game/client/voxel_sounds.cc +++ b/src/game/client/voxel_sounds.cc @@ -60,7 +60,7 @@ void voxel_sounds::init(void) add_footsteps_effect(voxel_surface::WOOD, "sounds/surface/wood3.wav"); } -void voxel_sounds::deinit(void) +void voxel_sounds::shutdown(void) { for(std::size_t i = 0; i < NUM_SURFACES; ++i) { footsteps_sounds[i].clear(); -- cgit