diff options
author | Filippos Karapetis | 2011-02-10 16:58:13 +0000 |
---|---|---|
committer | Filippos Karapetis | 2011-02-10 16:58:13 +0000 |
commit | 2ceb4339e942e45372399691e13b33a92cb4d862 (patch) | |
tree | 386996afbd3880ab48d250ccef04f50e642d1752 /engines | |
parent | 745c04194a22d8d00e043385aba9ff34887c170e (diff) | |
download | scummvm-rg350-2ceb4339e942e45372399691e13b33a92cb4d862.tar.gz scummvm-rg350-2ceb4339e942e45372399691e13b33a92cb4d862.tar.bz2 scummvm-rg350-2ceb4339e942e45372399691e13b33a92cb4d862.zip |
SCI: Changed the comments of r55869 to Doxygen format (thanks, fingolfin)
svn-id: r55874
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/resource_intern.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/engines/sci/resource_intern.h b/engines/sci/resource_intern.h index 0c58af7534..98cca6283c 100644 --- a/engines/sci/resource_intern.h +++ b/engines/sci/resource_intern.h @@ -35,16 +35,16 @@ namespace Common { namespace Sci { enum ResSourceType { - kSourceDirectory = 0, - kSourcePatch, // External resource patches - kSourceVolume, // Game resources (resource.* or ressci.*) - kSourceExtMap, // Non-audio resource maps - kSourceIntMap, // SCI1.1 and later audio resource maps - kSourceAudioVolume, // Audio resources - resource.sfx / resource.aud - kSourceExtAudioMap, // SCI1 audio resource maps - kSourceWave, // External WAVE files, patched in as sound resources - kSourceMacResourceFork, // Mac SCI1.1 and later resource forks - kSourceChunk // Script chunk resources (*.chk) + kSourceDirectory = 0, ///< Directories containing game resources/patches + kSourcePatch, ///< External resource patches + kSourceVolume, ///< Game resources (resource.* or ressci.*) + kSourceExtMap, ///< Non-audio resource maps + kSourceIntMap, ///< SCI1.1 and later audio resource maps + kSourceAudioVolume, ///< Audio resources - resource.sfx / resource.aud + kSourceExtAudioMap, ///< SCI1 audio resource maps + kSourceWave, ///< External WAVE files, patched in as sound resources + kSourceMacResourceFork, ///< Mac SCI1.1 and later resource forks + kSourceChunk ///< Script chunk resources (*.chk) }; |