From c9ca057ae2d8d3994aba86bb1ded05e0db008188 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Wed, 30 Sep 2009 10:45:14 +0000 Subject: - Adapt parts of the Draci code to match our code formatting guidelines - Remove use of tabs for formatting, now in nearly all cases tabs are only used for indentation - Use "uint" instead of "unsigned int" in the whole engine for consistency's sake - Strip some trailing tabs and leading whitespaces svn-id: r44478 --- engines/draci/draci.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'engines/draci/draci.h') diff --git a/engines/draci/draci.h b/engines/draci/draci.h index 168d48733f..264f4496c4 100644 --- a/engines/draci/draci.h +++ b/engines/draci/draci.h @@ -81,11 +81,11 @@ public: }; enum { - kDraciGeneralDebugLevel = 1 << 0, - kDraciBytecodeDebugLevel = 1 << 1, - kDraciArchiverDebugLevel = 1 << 2, - kDraciLogicDebugLevel = 1 << 3, - kDraciAnimationDebugLevel = 1 << 4 + kDraciGeneralDebugLevel = 1 << 0, + kDraciBytecodeDebugLevel = 1 << 1, + kDraciArchiverDebugLevel = 1 << 2, + kDraciLogicDebugLevel = 1 << 3, + kDraciAnimationDebugLevel = 1 << 4 }; // Macro to simulate lround() for non-C99 compilers -- cgit v1.2.3