diff options
Diffstat (limited to 'sound/mods/protracker.h')
-rw-r--r-- | sound/mods/protracker.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sound/mods/protracker.h b/sound/mods/protracker.h index 6f8bc0bf44..070f972d4a 100644 --- a/sound/mods/protracker.h +++ b/sound/mods/protracker.h @@ -21,8 +21,8 @@ * */ -#ifndef __SOUND_MODS_PROTRACKER_H__ -#define __SOUND_MODS_PROTRACKER_H__ +#ifndef SOUND_MODS_PROTRACKER_H +#define SOUND_MODS_PROTRACKER_H #include "common/stdafx.h" #include "common/system.h" @@ -32,7 +32,7 @@ namespace Modules { class SoundBuffer { - private: +private: int _capacity; int _size; int16 *_data; @@ -82,6 +82,7 @@ public: }; class ProtrackerPlayer { +private: OSystem *_system; Module *_module; @@ -129,7 +130,7 @@ class ProtrackerPlayer { } _track[4]; public: - ProtrackerPlayer() : _system(NULL), _module(NULL) { }; + ProtrackerPlayer() : _system(0), _module(0) { }; void init(OSystem *system); |