summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/macro.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-12-16 15:56:14 +0100
committerAdam Borowski <kilobyte@angband.pl>2010-12-16 16:53:03 +0100
commitad3bbac308f31e2c8bef95e921152f34f00cc785 (patch)
tree8315917941e95878b6788b17603ecabbbd39df1c /crawl-ref/source/macro.cc
parentc182b846613a797cb37fcda578553e40814b7e65 (diff)
downloadcrawl-ref-ad3bbac308f31e2c8bef95e921152f34f00cc785.tar.gz
crawl-ref-ad3bbac308f31e2c8bef95e921152f34f00cc785.zip
Rename TextFileReader to FileLineInput I didn't notice, use it for config files.
Diffstat (limited to 'crawl-ref/source/macro.cc')
-rw-r--r--crawl-ref/source/macro.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/macro.cc b/crawl-ref/source/macro.cc
index 45c01cbfeb..5cb0c21e5a 100644
--- a/crawl-ref/source/macro.cc
+++ b/crawl-ref/source/macro.cc
@@ -986,7 +986,7 @@ static void _read_macros_from(const char* filename)
return;
std::string s;
- TextFileReader f(filename);
+ FileLineInput f(filename);
keyseq key, action;
bool keymap = false;
KeymapContext keymc = KMC_DEFAULT;