(clang-format) Add RemoveSemicolon (#506)

This commit is contained in:
Christian Semmler
2024-01-29 17:30:20 -05:00
committed by GitHub
parent bcdddd4c7e
commit baed704a38
39 changed files with 81 additions and 80 deletions

View File

@@ -24,10 +24,10 @@ public:
}
// FUNCTION: LEGO1 0x1000d260
virtual MxS32 GetVolume() { return m_volume; }; // vtable+0x5c
virtual MxS32 GetVolume() { return m_volume; } // vtable+0x5c
// FUNCTION: LEGO1 0x1000d270
virtual void SetVolume(MxS32 p_volume) { m_volume = p_volume; }; // vtable+0x60
virtual void SetVolume(MxS32 p_volume) { m_volume = p_volume; } // vtable+0x60
protected:
MxS32 m_volume;