aboutsummaryrefslogtreecommitdiff
path: root/engines/cryo/platdefs.h
diff options
context:
space:
mode:
authorRetro-Junk2016-07-30 23:15:32 +0300
committerEugene Sandulenko2017-01-25 22:41:46 +0100
commitecf0d041045214933b9ef10d490bf62f3c7add99 (patch)
treeeaf091312dc898a15ffedb555588297d2234d871 /engines/cryo/platdefs.h
parente25bac9690f2802bce932d9b5490e2d5336be818 (diff)
downloadscummvm-rg350-ecf0d041045214933b9ef10d490bf62f3c7add99.tar.gz
scummvm-rg350-ecf0d041045214933b9ef10d490bf62f3c7add99.tar.bz2
scummvm-rg350-ecf0d041045214933b9ef10d490bf62f3c7add99.zip
CRYO: Lost Eden game engine initial commit
Diffstat (limited to 'engines/cryo/platdefs.h')
-rw-r--r--engines/cryo/platdefs.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/engines/cryo/platdefs.h b/engines/cryo/platdefs.h
new file mode 100644
index 0000000000..8e4d0a3d05
--- /dev/null
+++ b/engines/cryo/platdefs.h
@@ -0,0 +1,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