diff options
| -rw-r--r-- | engines/parallaction/disk_br.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/parallaction/disk_br.cpp b/engines/parallaction/disk_br.cpp index 4ef7b5c357..c4790c42ba 100644 --- a/engines/parallaction/disk_br.cpp +++ b/engines/parallaction/disk_br.cpp @@ -460,9 +460,9 @@ void AmigaDisk_br::loadBackground(BackgroundInfo& info, const char *filename) {  	stream = tryOpenFile("backs/" + Common::String(filename), ".ap");  	if (stream) { -		// NOTE: Always 15 palette entries, start at zero or one? +		// NOTE: Additional palette (15-colors) is always loaded onto colors 1-15  		uint32 size = stream->size() / 3; -		for (i = 0; i < size; i++) { +		for (i = 1; i < size; i++) {  			r = stream->readByte() >> 2;  			g = stream->readByte() >> 2;  			b = stream->readByte() >> 2;  | 
