diff options
author | Max Horn | 2009-02-21 19:01:32 +0000 |
---|---|---|
committer | Max Horn | 2009-02-21 19:01:32 +0000 |
commit | c5e00f3de2f52db870b329fecdc22dd5149b6553 (patch) | |
tree | f0a4ccb841077665bfe8066442bbbf59c9125bd0 /engines/sci/sfx/adlib.h | |
parent | 6bb73e3b685118cf6d906f985c25d766860767ad (diff) | |
download | scummvm-rg350-c5e00f3de2f52db870b329fecdc22dd5149b6553.tar.gz scummvm-rg350-c5e00f3de2f52db870b329fecdc22dd5149b6553.tar.bz2 scummvm-rg350-c5e00f3de2f52db870b329fecdc22dd5149b6553.zip |
SCI: More cleanup
svn-id: r38725
Diffstat (limited to 'engines/sci/sfx/adlib.h')
-rw-r--r-- | engines/sci/sfx/adlib.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/sci/sfx/adlib.h b/engines/sci/sfx/adlib.h index 01f6624cdf..7fb34006d9 100644 --- a/engines/sci/sfx/adlib.h +++ b/engines/sci/sfx/adlib.h @@ -24,8 +24,8 @@ */ -#ifndef _SFX_ADLIB_H_ -#define _SFX_ADLIB_H_ +#ifndef SCI_SFX_ADLIB_H +#define SCI_SFX_ADLIB_H #include "sci/tools.h" @@ -68,9 +68,9 @@ typedef unsigned char adlib_instr[12]; extern adlib_instr adlib_sbi[96]; +/** Converts a raw SCI adlib instrument into the adlib register format. */ void make_sbi(adlib_def *one, guint8 *buffer); -/* Converts a raw SCI adlib instrument into the adlib register format. */ } // End of namespace Sci -#endif /* _SFX_ADLIB_H_ */ +#endif // SCI_SFX_ADLIB_H |