diff options
| author | Johannes Schickel | 2007-01-27 22:03:33 +0000 | 
|---|---|---|
| committer | Johannes Schickel | 2007-01-27 22:03:33 +0000 | 
| commit | 46609ad455bbc62ddd6393b5ea640fd94b965ef4 (patch) | |
| tree | 79d6740219d611dc56fa1260d5523b64269e5866 | |
| parent | 5dab7f823fc757a9225f384ca90d1ff6664c6c33 (diff) | |
| download | scummvm-rg350-46609ad455bbc62ddd6393b5ea640fd94b965ef4.tar.gz scummvm-rg350-46609ad455bbc62ddd6393b5ea640fd94b965ef4.tar.bz2 scummvm-rg350-46609ad455bbc62ddd6393b5ea640fd94b965ef4.zip | |
formatting.
svn-id: r25230
| -rw-r--r-- | sound/mods/module.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/sound/mods/module.h b/sound/mods/module.h index c302d490b1..09c1e9b945 100644 --- a/sound/mods/module.h +++ b/sound/mods/module.h @@ -68,8 +68,8 @@ public:  	~Module();  	bool load(Common::ReadStream &stream); -	byte static periodToNote(int16 period, byte finetune = 0); -	int16 static noteToPeriod(byte note, byte finetune = 0); +	static byte periodToNote(int16 period, byte finetune = 0); +	static int16 noteToPeriod(byte note, byte finetune = 0);  private:  	static const int16 periods[16][60]; | 
