summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libgui.cc
diff options
context:
space:
mode:
authorEnne Walker <ennewalker@users.sourceforge.net>2009-10-31 10:59:52 -0400
committerEnne Walker <ennewalker@users.sourceforge.net>2009-10-31 11:09:28 -0400
commit95746496df9bc09763421a35bb5c3cbc1ff4ad54 (patch)
tree941adb4b2e042d6f63a2c467d96e431464cbc145 /crawl-ref/source/libgui.cc
parent3877db329ce13f8d527b2954c3f9d5857a2b6b35 (diff)
downloadcrawl-ref-95746496df9bc09763421a35bb5c3cbc1ff4ad54.tar.gz
crawl-ref-95746496df9bc09763421a35bb5c3cbc1ff4ad54.zip
Adding you.in_branch(string) as a lua function.
This also removes you.where_are_you() so as not to require lua scripts to know the value of C++ enums. This change also fixes stricmp incorrectly falling through to strcmp on non-MSVC platforms.
Diffstat (limited to 'crawl-ref/source/libgui.cc')
-rw-r--r--crawl-ref/source/libgui.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/crawl-ref/source/libgui.cc b/crawl-ref/source/libgui.cc
index 185428e109..721572327c 100644
--- a/crawl-ref/source/libgui.cc
+++ b/crawl-ref/source/libgui.cc
@@ -405,10 +405,5 @@ char *strlwr(char *str)
return (str);
}
-int stricmp(const char *str1, const char *str2)
-{
- return (strcmp(str1, str2));
-}
-
#endif // #ifdef UNIX
#endif // #ifdef USE_TILE