From 16e207f78b98b237aa98bca033b550cb8954fb61 Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 8 Jul 2009 20:49:29 +0000 Subject: (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. --- src/ai/api/ai_tilelist.hpp.sq | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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 SQAITileList_IndustryAccepting("AITileList_IndustryAccepting"); SQAITileList_IndustryAccepting.PreRegister(engine, "AITileList"); - SQAITileList_IndustryAccepting.AddConstructor(engine, "xii"); + SQAITileList_IndustryAccepting.AddConstructor(engine, "xii"); SQAITileList_IndustryAccepting.PostRegister(engine); } @@ -54,7 +54,7 @@ namespace SQConvert { void SQAITileList_IndustryProducing_Register(Squirrel *engine) { DefSQClass SQAITileList_IndustryProducing("AITileList_IndustryProducing"); SQAITileList_IndustryProducing.PreRegister(engine, "AITileList"); - SQAITileList_IndustryProducing.AddConstructor(engine, "xii"); + SQAITileList_IndustryProducing.AddConstructor(engine, "xii"); SQAITileList_IndustryProducing.PostRegister(engine); } -- cgit v1.2.3-54-g00ecf