~ubuntu-branches/debian/jessie/scummvm/jessie

« back to all changes in this revision

Viewing changes to engines/gob/video_v6.cpp

  • Committer: Package Import Robot
  • Author(s): Moritz Muehlenhoff
  • Date: 2011-11-05 10:29:43 UTC
  • mto: This revision was merged to the branch mainline in revision 25.
  • Revision ID: package-import@ubuntu.com-20111105102943-zfm3dhlvy5b01u7v
Tags: upstream-1.4.0
ImportĀ upstreamĀ versionĀ 1.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 * along with this program; if not, write to the Free Software
19
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20
20
 *
21
 
 * $URL$
22
 
 * $Id$
23
 
 *
24
21
 */
25
22
 
26
23
#include "common/endian.h"
127
124
                Pixel dstRow = dst;
128
125
 
129
126
                int nextChromaLine = (i < ((height - 1) & ~3) ) ? dataWidth : 0;
130
 
        
 
127
 
131
128
                for (int j = 0; j < width; j++, dstRow++) {
132
129
 
133
130
                        int nextChromaColumn = (j < ((width - 1) & ~3)) ? 1 : 0;