diff options
author | richiesams | 2013-07-19 10:23:29 -0500 |
---|---|---|
committer | richiesams | 2013-08-04 13:32:28 -0500 |
commit | d546e11cf12d90eb246513ccc0be867172f0af96 (patch) | |
tree | de1e70896af4fd2c14765e9e76da8d5e8bf7725b | |
parent | b316df9e821a7cb27290e8ebed49eb78c2ee5884 (diff) | |
download | scummvm-rg350-d546e11cf12d90eb246513ccc0be867172f0af96.tar.gz scummvm-rg350-d546e11cf12d90eb246513ccc0be867172f0af96.tar.bz2 scummvm-rg350-d546e11cf12d90eb246513ccc0be867172f0af96.zip |
ZVISION: Fix namespace indentation
-rw-r--r-- | engines/zvision/console.h | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/engines/zvision/console.h b/engines/zvision/console.h index cf22c42e35..3110d8ad37 100644 --- a/engines/zvision/console.h +++ b/engines/zvision/console.h @@ -27,21 +27,20 @@ namespace ZVision { - class ZVision; +class ZVision; - class Console : public GUI::Debugger { - public: - Console(ZVision *engine); - virtual ~Console() {} +class Console : public GUI::Debugger { +public: + Console(ZVision *engine); + virtual ~Console() {} - private: - ZVision *_engine; +private: + ZVision *_engine; - bool cmdLoadImage(int argc, const char **argv); - bool cmdLoadVideo(int argc, const char **argv); - bool cmdLoadSound(int argc, const char **argv); - bool cmdRawToWav(int argc, const char **argv); - }; + bool cmdLoadImage(int argc, const char **argv); + bool cmdLoadVideo(int argc, const char **argv); + bool cmdLoadSound(int argc, const char **argv); +}; } // End of namespace ZVision #endif |