summaryrefslogtreecommitdiff
path: root/src/newgrf_callbacks.h
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2007-09-27 21:47:38 +0000
committerglx <glx@openttd.org>2007-09-27 21:47:38 +0000
commit7cdbb50b5b9917daea1d0eecbd6a973558dac061 (patch)
tree886b25a385b8089ab953abf3fd596430115eb949 /src/newgrf_callbacks.h
parent5e45e730375743b5429215644b31d1bb1cfdcf3b (diff)
downloadopenttd-7cdbb50b5b9917daea1d0eecbd6a973558dac061.tar.xz
(svn r11177) -Codechange: add support for newgrf callbacks 14B and 14C
Diffstat (limited to 'src/newgrf_callbacks.h')
-rw-r--r--src/newgrf_callbacks.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/newgrf_callbacks.h b/src/newgrf_callbacks.h
index 34efbe130..16f5169d0 100644
--- a/src/newgrf_callbacks.h
+++ b/src/newgrf_callbacks.h
@@ -196,10 +196,10 @@ enum CallbackID {
CBID_INDUSTRY_DECIDE_COLOUR = 0x14A, // not implemented
/** Customize the input cargo types of a newly build industry. */
- CBID_INDUSTRY_INPUT_CARGO_TYPES = 0x14B, // not implemented
+ CBID_INDUSTRY_INPUT_CARGO_TYPES = 0x14B,
/** Customize the output cargo types of a newly build industry. */
- CBID_INDUSTRY_OUTPUT_CARGO_TYPES = 0x14C, // not implemented
+ CBID_INDUSTRY_OUTPUT_CARGO_TYPES = 0x14C,
};
/**