aboutsummaryrefslogtreecommitdiff
path: root/sword2
diff options
context:
space:
mode:
authorMax Horn2004-01-22 21:02:29 +0000
committerMax Horn2004-01-22 21:02:29 +0000
commit90b96a94abeb8ee02d5468f9088a23174a0ccc60 (patch)
treefc0a22362fc97a29e2566e7adb55f80220866966 /sword2
parent747cbef8d7fa5dffab1a21d56726bf207211b80e (diff)
downloadscummvm-rg350-90b96a94abeb8ee02d5468f9088a23174a0ccc60.tar.gz
scummvm-rg350-90b96a94abeb8ee02d5468f9088a23174a0ccc60.tar.bz2
scummvm-rg350-90b96a94abeb8ee02d5468f9088a23174a0ccc60.zip
whitespaces
svn-id: r12575
Diffstat (limited to 'sword2')
-rw-r--r--sword2/driver/animation.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/sword2/driver/animation.cpp b/sword2/driver/animation.cpp
index cccb073cff..e7712a43f7 100644
--- a/sword2/driver/animation.cpp
+++ b/sword2/driver/animation.cpp
@@ -41,10 +41,10 @@ AnimationState::~AnimationState() {
if (decoder)
mpeg2_close(decoder);
delete mpgfile;
- delete sndfile;
+ delete sndfile;
#ifndef BACKEND_8BIT
- _vm->_system->hide_overlay();
- delete overlay;
+ _vm->_system->hide_overlay();
+ delete overlay;
#endif
#endif
}
@@ -56,11 +56,11 @@ bool AnimationState::init(const char *name) {
decoder = NULL;
mpgfile = NULL;
sndfile = NULL;
- bgSoundStream = NULL;
+ bgSoundStream = NULL;
#ifdef BACKEND_8BIT
- int i, p;
+ int i, p;
// Load lookup palettes
// TODO: Binary format so we can use File class
@@ -280,7 +280,7 @@ void AnimationState::plotYUV(NewGuiColor *lut, int width, int height, byte *cons
ptr[linepos ] = lut[i + dat[0][ ypos ]];
ptr[RENDERWIDE + linepos++] = lut[i + dat[0][width + ypos++]];
- }
+ }
linepos += (2 * 640 - width);
ypos += width;
}
@@ -370,12 +370,12 @@ bool AnimationState::decodeFrame() {
#else
if ((bgSoundStream == NULL) ||
- (bgSoundStream->getSamplesPlayed()*12/bgSoundStream->getRate()) < (framenum+3)){
+ (bgSoundStream->getSamplesPlayed() * 12 / bgSoundStream->getRate()) < (framenum+3)){
plotYUV(lookup2, sequence_i->width, sequence_i->height, info->display_fbuf->buf);
if (bgSoundStream) {
- while ((bgSoundStream->getSamplesPlayed()*12/bgSoundStream->getRate()) < framenum + 1)
+ while ((bgSoundStream->getSamplesPlayed() * 12 / bgSoundStream->getRate()) < framenum + 1)
_vm->_system->delay_msecs(10);
} else {
ticks += 83;
@@ -390,7 +390,7 @@ bool AnimationState::decodeFrame() {
framenum++;
return true;
- }
+ }
break;
default:
@@ -460,7 +460,7 @@ int32 MoviePlayer::play(const char *filename, MovieTextObject *text[], uint8 *mu
#endif
while (anim->decodeFrame()) {
- if (text && text[textCounter]) {
+ if (text && text[textCounter]) {
if (frameCounter == text[textCounter]->startFrame) {
openTextObject(text[textCounter]);
textVisible = true;