Fix code formatting (esp. 'if(' -> 'if (' etc., but also indention and other things)

svn-id: r44495
This commit is contained in:
Max Horn 2009-09-30 16:16:53 +00:00
parent 25dde91c7c
commit 8ba75fc522
90 changed files with 694 additions and 709 deletions

View file

@ -369,7 +369,7 @@ void Script::load(Common::Queue<int> &params) {
GameObject *obj = _vm->_game->getObject(objID);
// If the animation is already loaded, return
for(i = 0; i < obj->_anims.size(); ++i) {
for (i = 0; i < obj->_anims.size(); ++i) {
if (obj->_anims[i] == animID) {
return;
}
@ -384,7 +384,7 @@ void Script::load(Common::Queue<int> &params) {
// Care must be taken to store them sorted (increasing order) as some things
// depend on this.
for(i = 0; i < obj->_anims.size(); ++i) {
for (i = 0; i < obj->_anims.size(); ++i) {
if (obj->_anims[i] > animID) {
break;
}