diff options
author | Max Horn | 2009-09-30 16:16:53 +0000 |
---|---|---|
committer | Max Horn | 2009-09-30 16:16:53 +0000 |
commit | 8ba75fc522f16844524dd4d6f88c3851e2402969 (patch) | |
tree | df25c20389e3e706d508f37914dedc73c6479f00 /backends/platform/PalmOS | |
parent | 25dde91c7c6c7da52636e3daa34bd9eee5d9dcb9 (diff) | |
download | scummvm-rg350-8ba75fc522f16844524dd4d6f88c3851e2402969.tar.gz scummvm-rg350-8ba75fc522f16844524dd4d6f88c3851e2402969.tar.bz2 scummvm-rg350-8ba75fc522f16844524dd4d6f88c3851e2402969.zip |
Fix code formatting (esp. 'if(' -> 'if (' etc., but also indention and other things)
svn-id: r44495
Diffstat (limited to 'backends/platform/PalmOS')
-rw-r--r-- | backends/platform/PalmOS/Src/base_event.cpp | 2 | ||||
-rw-r--r-- | backends/platform/PalmOS/Src/base_gfx.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/PalmOS/Src/base_event.cpp b/backends/platform/PalmOS/Src/base_event.cpp index 81eeb4e79c..ae93514e34 100644 --- a/backends/platform/PalmOS/Src/base_event.cpp +++ b/backends/platform/PalmOS/Src/base_event.cpp @@ -324,7 +324,7 @@ bool OSystem_PalmBase::pollEvent(Common::Event &event) { if (SysHandleEvent(&ev)) continue; - switch(ev.eType) { + switch (ev.eType) { case penMoveEvent: get_coordinates(&ev, x, y); diff --git a/backends/platform/PalmOS/Src/base_gfx.cpp b/backends/platform/PalmOS/Src/base_gfx.cpp index 73a98909d6..2d2904bdec 100644 --- a/backends/platform/PalmOS/Src/base_gfx.cpp +++ b/backends/platform/PalmOS/Src/base_gfx.cpp @@ -53,7 +53,7 @@ int OSystem_PalmBase::getGraphicsMode() const { } bool OSystem_PalmBase::setGraphicsMode(int mode) { - switch(mode) { + switch (mode) { case GFX_NORMAL: case GFX_WIDE: _setMode = mode; |