aboutsummaryrefslogtreecommitdiff
path: root/v4/resource.cpp
blob: 3cf2d4ec00a75d9d427c41995855fe1456d11abc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include"../stdafx.h"
#include"../scumm.h"

void Scumm_v4::loadCharset(int no) {
	uint32 size;

	checkRange(4 ,0 ,no , "Loading illegal charset %d");
	openRoom(-1);

	openRoom(900+no);

	size = fileReadDwordLE();

	fileRead(_fileHandle, createResource(6, no, size), size);
	openRoom(-1);
}