diff options
author | Adrian Frühwirth | 2018-05-07 23:09:02 +0200 |
---|---|---|
committer | Adrian Frühwirth | 2018-05-07 23:09:02 +0200 |
commit | 97022883380e3c4b0659d41f28987954c2891409 (patch) | |
tree | a988935b3a3792aeff25355d5769679456062257 /engines/wintermute | |
parent | bdc0db97d5fbb5ea6ef71aea466e38b13d1fb40c (diff) | |
download | scummvm-rg350-97022883380e3c4b0659d41f28987954c2891409.tar.gz scummvm-rg350-97022883380e3c4b0659d41f28987954c2891409.tar.bz2 scummvm-rg350-97022883380e3c4b0659d41f28987954c2891409.zip |
JANITORIAL: Fix indentation
Diffstat (limited to 'engines/wintermute')
-rw-r--r-- | engines/wintermute/debugger/error.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/engines/wintermute/debugger/error.h b/engines/wintermute/debugger/error.h index 4e5b973445..0798fe7cb3 100644 --- a/engines/wintermute/debugger/error.h +++ b/engines/wintermute/debugger/error.h @@ -28,27 +28,27 @@ namespace Wintermute { enum ErrorLevel { - SUCCESS, - NOTICE, - WARNING, - ERROR + SUCCESS, + NOTICE, + WARNING, + ERROR }; enum ErrorCode { - OK, - NO_SUCH_SOURCE, - COULD_NOT_OPEN, - NO_SUCH_LINE, - NOT_ALLOWED, - NO_SUCH_BYTECODE, - DUPLICATE_BREAKPOINT, - NO_SUCH_BREAKPOINT, - WRONG_TYPE, - PARSE_ERROR, - NOT_YET_IMPLEMENTED, - SOURCE_PATH_NOT_SET, - ILLEGAL_PATH, - UNKNOWN_ERROR + OK, + NO_SUCH_SOURCE, + COULD_NOT_OPEN, + NO_SUCH_LINE, + NOT_ALLOWED, + NO_SUCH_BYTECODE, + DUPLICATE_BREAKPOINT, + NO_SUCH_BREAKPOINT, + WRONG_TYPE, + PARSE_ERROR, + NOT_YET_IMPLEMENTED, + SOURCE_PATH_NOT_SET, + ILLEGAL_PATH, + UNKNOWN_ERROR }; |