From 5599c20eb6b2cd02103958bc53b61714de350960 Mon Sep 17 00:00:00 2001 From: ennewalker Date: Mon, 15 Dec 2008 02:39:00 +0000 Subject: Brief change to my previous commit to make rltiles use those newfangled C++ headers instead. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7834 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/rltiles/tool/tile_list_processor.cc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/rltiles/tool') diff --git a/crawl-ref/source/rltiles/tool/tile_list_processor.cc b/crawl-ref/source/rltiles/tool/tile_list_processor.cc index 5618c7b621..9b3ede1a70 100644 --- a/crawl-ref/source/rltiles/tool/tile_list_processor.cc +++ b/crawl-ref/source/rltiles/tool/tile_list_processor.cc @@ -1,12 +1,14 @@ #include "tile_list_processor.h" -#include +#include #include #include #include #include #include +using namespace std; + tile_list_processor::tile_list_processor() : m_last_enum(~0), m_rim(false), @@ -648,8 +650,8 @@ bool tile_list_processor::write_data() fprintf(fp, "// This file has been automatically generated.\n\n"); fprintf(fp, "#include \"tiledef-%s.h\"\n\n", lcname.c_str()); fprintf(fp, "#include \n"); - fprintf(fp, "#include \n"); - fprintf(fp, "#include \n"); + fprintf(fp, "#include \n"); + fprintf(fp, "#include \n"); fprintf(fp, "using namespace std;\n\n"); fprintf(fp, "int _tile_%s_count[%s - %s] =\n{\n", -- cgit v1.2.3-54-g00ecf