summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tiledoll.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-10-15 01:55:59 +0200
committerAdam Borowski <kilobyte@angband.pl>2010-10-15 01:55:59 +0200
commit555734fcd3aef4c83605d70d0456dda28b7b5ace (patch)
tree9c34fe5bc58d5f3d4c0a7622045adc7aa1d17a98 /crawl-ref/source/tiledoll.cc
parentacf5187334f2cfb983a1a8de07d1e77f73e4283a (diff)
downloadcrawl-ref-555734fcd3aef4c83605d70d0456dda28b7b5ace.tar.gz
crawl-ref-555734fcd3aef4c83605d70d0456dda28b7b5ace.zip
Massive spacing fixes: "( spaces after parentheses )".
I did review it manually to find places where they made sense (like some tables), but for a massive sed job like this there might be places that I missed.
Diffstat (limited to 'crawl-ref/source/tiledoll.cc')
-rw-r--r--crawl-ref/source/tiledoll.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/tiledoll.cc b/crawl-ref/source/tiledoll.cc
index 10a6056a06..7e5516db6f 100644
--- a/crawl-ref/source/tiledoll.cc
+++ b/crawl-ref/source/tiledoll.cc
@@ -106,7 +106,7 @@ bool load_doll_data(const char *fn, dolls_data *dolls, int max,
: dollsTxtString.c_str();
- if ( (fp = fopen(dollsTxt, "r")) == NULL )
+ if ((fp = fopen(dollsTxt, "r")) == NULL)
{
// File doesn't exist. By default, use equipment settings.
*mode = TILEP_MODE_EQUIP;
@@ -164,7 +164,7 @@ bool load_doll_data(const char *fn, dolls_data *dolls, int max,
}
else // Load up to max dolls from file.
{
- for (int count = 0; count < max && fscanf(fp, "%1023s", fbuf) != EOF; )
+ for (int count = 0; count < max && fscanf(fp, "%1023s", fbuf) != EOF;)
{
if (fbuf[0] == '#') // Skip comment lines.
continue;