aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/psp/rtc.h
diff options
context:
space:
mode:
authorMax Horn2010-06-21 21:37:00 +0000
committerMax Horn2010-06-21 21:37:00 +0000
commit6c854f30da2579c8e7059948c700fd0bcc72366d (patch)
tree4b9662d857215f1030683b8093ffc8b398fc336a /backends/platform/psp/rtc.h
parentbbad3f333a9227ccb1de633a0fe92d9e01ad7bb3 (diff)
downloadscummvm-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
Diffstat (limited to 'backends/platform/psp/rtc.h')
-rw-r--r--backends/platform/psp/rtc.h9
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();