From 6c854f30da2579c8e7059948c700fd0bcc72366d Mon Sep 17 00:00:00 2001 From: Max Horn Date: Mon, 21 Jun 2010 21:37:00 +0000 Subject: PSP: Whitespace fix (and rewrap overlong line for readability) svn-id: r50129 --- backends/platform/psp/rtc.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'backends/platform/psp/rtc.h') 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{ +class PspRtc : public Common::Singleton { 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(); -- cgit v1.2.3