summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/asg.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-10-06 15:33:09 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-10-06 15:33:09 +0200
commit6cfc1f2ff4dbf4ade01828aca2c2d1cd9c3029ea (patch)
treead88d9bf88b0867180ac315f9dc3b1ef67420017 /crawl-ref/source/asg.h
parent03bfcc8f827d2330a6d58ce4e1f4b0f971b3ad20 (diff)
downloadcrawl-ref-6cfc1f2ff4dbf4ade01828aca2c2d1cd9c3029ea.tar.gz
crawl-ref-6cfc1f2ff4dbf4ade01828aca2c2d1cd9c3029ea.zip
Remove unused code for a RNG stack.
Nothing uses it as a hash anymore; and if it did, you can have more than one RNG object at once.
Diffstat (limited to 'crawl-ref/source/asg.h')
-rw-r--r--crawl-ref/source/asg.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/crawl-ref/source/asg.h b/crawl-ref/source/asg.h
index 85d7d70c6b..2224bf6f28 100644
--- a/crawl-ref/source/asg.h
+++ b/crawl-ref/source/asg.h
@@ -12,9 +12,6 @@ class AsgKISS
uint32_t m_lcg, m_mwcm, m_mwcc, m_xorshift, m_lfsr;
};
-void push_asg_state();
-void pop_asg_state();
-
uint32_t get_uint32();
void seed_asg(uint32_t[], int);
#endif