summaryrefslogtreecommitdiff
path: root/src/window.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-10-15 19:59:27 +0000
committerrubidium <rubidium@openttd.org>2007-10-15 19:59:27 +0000
commit322746ee11100a78e110d97b37c22d87452f8bff (patch)
tree601eba06fa5b573918e61db14239d9e0335bd237 /src/window.h
parenta1e1d8536193d1d3eba46077b55b119eda3d8823 (diff)
downloadopenttd-322746ee11100a78e110d97b37c22d87452f8bff.tar.xz
(svn r11269) -Feature: user customisable faces. Patch by BigBB.
Diffstat (limited to 'src/window.h')
-rw-r--r--src/window.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/window.h b/src/window.h
index 593016807..9f498eb6d 100644
--- a/src/window.h
+++ b/src/window.h
@@ -390,9 +390,10 @@ struct smallmap_d {
};
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(smallmap_d));
+/* player face selection window */
struct facesel_d {
- uint32 face;
- byte gender;
+ PlayerFace face; // player face bits
+ bool advanced; // advance player face selection window
};
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(facesel_d));