summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/invent.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/invent.cc')
-rw-r--r--crawl-ref/source/invent.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/invent.cc b/crawl-ref/source/invent.cc
index f7664f7eb3..3fca2586a4 100644
--- a/crawl-ref/source/invent.cc
+++ b/crawl-ref/source/invent.cc
@@ -854,7 +854,7 @@ static unsigned char _get_invent_quant( unsigned char keyin, int &quant )
{
quant = keyin - '0';
- for(;;)
+ while (true)
{
keyin = get_ch();
@@ -912,7 +912,7 @@ std::vector<SelItem> prompt_invent_items(
std::vector<SelItem> items;
int count = -1;
- for (;;)
+ while (true)
{
if (need_redraw)
{
@@ -1229,7 +1229,7 @@ int prompt_invent_item( const char *prompt,
keyin = '?';
}
- for (;;)
+ while (true)
{
if (need_redraw)
{