Minor code cleanup

This commit is contained in:
Alex Szpakowski
2014-05-21 21:14:08 -03:00
parent 2b12c9cb1e
commit fd5b5aad65
9 changed files with 15 additions and 17 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ public:
*/
enum DistanceModel
{
DISTANCE_NONE = 1,
DISTANCE_NONE,
DISTANCE_INVERSE,
DISTANCE_INVERSE_CLAMPED,
DISTANCE_LINEAR,
+2 -2
View File
@@ -36,14 +36,14 @@ public:
enum Type
{
TYPE_STATIC = 1,
TYPE_STATIC,
TYPE_STREAM,
TYPE_MAX_ENUM
}; // Type
enum Unit
{
UNIT_SECONDS = 1,
UNIT_SECONDS,
UNIT_SAMPLES,
UNIT_MAX_ENUM
};