aboutsummaryrefslogtreecommitdiff
path: root/engines/cryo/platdefs.h
blob: c011a5f62d051c463b09166c1ec6dbfbbab25d58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#pragma once

#if 1
#include "common/file.h"

typedef Common::File file_t;

struct filespec_t {
	char    create;
	char    name[260];
};

#if 1
const int subtitles_x_margin = 16;          //PC
const int subtitles_x_scr_margin = 16;
const int space_width = 6;
#define FAKE_DOS_VERSION
#else
const int subtitles_x_margin = 16;          //MAC
const int subtitles_x_scr_margin = 16;          //MAC
const int space_width = 4;
#endif
const int subtitles_x_width = (320 - subtitles_x_margin * 2);
const int subtitles_x_center = subtitles_x_width / 2;

#endif