Skip to content
This repository was archived by the owner on Jan 5, 2024. It is now read-only.

Commit 54f3ae1

Browse files
committed
Remove GUISound::Reset - unused method
Rename region in AudioMan.h
1 parent 2b01aba commit 54f3ae1

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

GUI/GUISound.h

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@ namespace RTE {
2929
#pragma endregion
3030

3131
#pragma region Destruction
32-
/// <summary>
33-
/// Resets the entire GUISound, including its inherited members, to their default settings or values.
34-
/// </summary>
35-
void Reset() { Clear(); Reset(); }
36-
3732
/// <summary>
3833
/// Destroys and resets (through Clear()) the GUISound object.
3934
/// </summary>

Managers/AudioMan.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ namespace RTE {
9999
void Destroy();
100100
#pragma endregion
101101

102-
#pragma region Virtual Override Methods
102+
#pragma region Standard Methods
103103
/// <summary>
104104
/// Resets the entire AudioMan including it's inherited members to their default settings or values.
105105
/// </summary>
106-
virtual void Reset() { Clear(); }
106+
void Reset() { Clear(); }
107107

108108
/// <summary>
109109
/// Updates the state of this AudioMan. Supposed to be done every frame before drawing.

0 commit comments

Comments
 (0)