diff options
author | Max Horn | 2010-06-21 21:37:00 +0000 |
---|---|---|
committer | Max Horn | 2010-06-21 21:37:00 +0000 |
commit | 6c854f30da2579c8e7059948c700fd0bcc72366d (patch) | |
tree | 4b9662d857215f1030683b8093ffc8b398fc336a | |
parent | bbad3f333a9227ccb1de633a0fe92d9e01ad7bb3 (diff) | |
download | scummvm-rg350-6c854f30da2579c8e7059948c700fd0bcc72366d.tar.gz scummvm-rg350-6c854f30da2579c8e7059948c700fd0bcc72366d.tar.bz2 scummvm-rg350-6c854f30da2579c8e7059948c700fd0bcc72366d.zip |
PSP: Whitespace fix (and rewrap overlong line for readability)
svn-id: r50129
-rw-r--r-- | backends/platform/psp/rtc.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/backends/platform/psp/rtc.h b/backends/platform/psp/rtc.h index 3f2d52ff16..7c1a28474d 100644 --- a/backends/platform/psp/rtc.h +++ b/backends/platform/psp/rtc.h @@ -28,7 +28,7 @@ #include "common/singleton.h" -class PspRtc : public Common::Singleton<PspRtc>{ +class PspRtc : public Common::Singleton<PspRtc> { private: uint32 _startMillis; uint32 _startMicros; @@ -36,7 +36,12 @@ private: uint32 _milliOffset; // to prevent looping around of millis bool _looped; // make sure we only loop once - for threading public: - PspRtc() : _startMillis(0), _startMicros(0), _lastMillis(0), _milliOffset(0), _looped(false) { init(); } + PspRtc() + : _startMillis(0), _startMicros(0), + _lastMillis(0), _milliOffset(0), + _looped(false) { + init(); + } void init(); uint32 getMillis(); uint32 getMicros(); |