diff options
author | rubidium <rubidium@openttd.org> | 2009-07-08 20:49:29 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-07-08 20:49:29 +0000 |
commit | 16e207f78b98b237aa98bca033b550cb8954fb61 (patch) | |
tree | 3c3ff9eba6bfc9308d3b82454267af8add870c2f /src/ai | |
parent | 2ba7e31971b006a503366b1ed69492708d8ec08c (diff) | |
download | openttd-16e207f78b98b237aa98bca033b550cb8954fb61.tar.xz |
(svn r16771) -Fix: API export was forgotten causing API to think variables were uint; doesn't matter much as int was converted to uint and then back.
Diffstat (limited to 'src/ai')
-rw-r--r-- | src/ai/api/ai_tilelist.hpp.sq | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ai/api/ai_tilelist.hpp.sq b/src/ai/api/ai_tilelist.hpp.sq index 4bd278947..846e364c8 100644 --- a/src/ai/api/ai_tilelist.hpp.sq +++ b/src/ai/api/ai_tilelist.hpp.sq @@ -37,7 +37,7 @@ namespace SQConvert { void SQAITileList_IndustryAccepting_Register(Squirrel *engine) { DefSQClass <AITileList_IndustryAccepting> SQAITileList_IndustryAccepting("AITileList_IndustryAccepting"); SQAITileList_IndustryAccepting.PreRegister(engine, "AITileList"); - SQAITileList_IndustryAccepting.AddConstructor<void (AITileList_IndustryAccepting::*)(IndustryID industry_id, uint radius), 3>(engine, "xii"); + SQAITileList_IndustryAccepting.AddConstructor<void (AITileList_IndustryAccepting::*)(IndustryID industry_id, int radius), 3>(engine, "xii"); SQAITileList_IndustryAccepting.PostRegister(engine); } @@ -54,7 +54,7 @@ namespace SQConvert { void SQAITileList_IndustryProducing_Register(Squirrel *engine) { DefSQClass <AITileList_IndustryProducing> SQAITileList_IndustryProducing("AITileList_IndustryProducing"); SQAITileList_IndustryProducing.PreRegister(engine, "AITileList"); - SQAITileList_IndustryProducing.AddConstructor<void (AITileList_IndustryProducing::*)(IndustryID industry_id, uint radius), 3>(engine, "xii"); + SQAITileList_IndustryProducing.AddConstructor<void (AITileList_IndustryProducing::*)(IndustryID industry_id, int radius), 3>(engine, "xii"); SQAITileList_IndustryProducing.PostRegister(engine); } |