diff options
| author | Max Horn | 2011-02-07 23:01:06 +0000 |
|---|---|---|
| committer | Max Horn | 2011-02-07 23:01:06 +0000 |
| commit | 2d1c8a35331d4c73032a6fcd50ab3f7a27513dbb (patch) | |
| tree | a538852678f172dec297b83d115a7d76f2638969 /engines/tinsel | |
| parent | 377b4c67d99503b19e866ff47c685c57dd2a56e0 (diff) | |
| download | scummvm-rg350-2d1c8a35331d4c73032a6fcd50ab3f7a27513dbb.tar.gz scummvm-rg350-2d1c8a35331d4c73032a6fcd50ab3f7a27513dbb.tar.bz2 scummvm-rg350-2d1c8a35331d4c73032a6fcd50ab3f7a27513dbb.zip | |
ALL: Fix whitespaces / indention
svn-id: r55818
Diffstat (limited to 'engines/tinsel')
| -rw-r--r-- | engines/tinsel/events.h | 2 | ||||
| -rw-r--r-- | engines/tinsel/palette.cpp | 2 | ||||
| -rw-r--r-- | engines/tinsel/sched.cpp | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/engines/tinsel/events.h b/engines/tinsel/events.h index c585365d4f..a491f1e036 100644 --- a/engines/tinsel/events.h +++ b/engines/tinsel/events.h @@ -75,7 +75,7 @@ enum PLR_EVENT { PLR_SRIGHT = PLR_LOOK, PLR_DRIGHT = PLR_NOEVENT, PLR_UNKNOWN = PLR_NOEVENT -} ; +}; diff --git a/engines/tinsel/palette.cpp b/engines/tinsel/palette.cpp index 438f077f4f..7cc6564832 100644 --- a/engines/tinsel/palette.cpp +++ b/engines/tinsel/palette.cpp @@ -631,7 +631,7 @@ void DimPartPalette(SCNHANDLE hDimPal, int startColour, int length, int brightne if (startColour + length > pPalQ->numColours) error("DimPartPalette(): colour overrun"); - for (iColour = startColour ; iColour < startColour + length; iColour++) { + for (iColour = startColour; iColour < startColour + length; iColour++) { pPalQ->palRGB[iColour] = DimColour(pDimPal->palRGB[iColour], brightness); } diff --git a/engines/tinsel/sched.cpp b/engines/tinsel/sched.cpp index 939b5f4245..427e28826f 100644 --- a/engines/tinsel/sched.cpp +++ b/engines/tinsel/sched.cpp @@ -288,7 +288,8 @@ void Scheduler::giveWay(PPROCESS pReSchedProc) { PPROCESS pEnd; // Find the last process in the list. - for (pEnd = pCurrent; pEnd->pNext != NULL; pEnd = pEnd->pNext) ; + for (pEnd = pCurrent; pEnd->pNext != NULL; pEnd = pEnd->pNext) + ; assert(pEnd->pNext == NULL); |
