From 3156b39e958b466c424a27e888861e029ddb0602 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Tue, 1 Apr 2008 19:42:19 +0000 Subject: Yet Another Code Cleanup, this time concentrating on libx11.cc and view.cc. (Yes, this is semi-random.) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4032 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/files.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/files.cc') diff --git a/crawl-ref/source/files.cc b/crawl-ref/source/files.cc index c98cf0b027..040a4ba570 100644 --- a/crawl-ref/source/files.cc +++ b/crawl-ref/source/files.cc @@ -1616,11 +1616,12 @@ static void restore_tagged_file( FILE *restoreFile, int fileType, char tags[NUM_TAGS]; tag_set_expected(tags, fileType); - while(1) + while (true) { tag_type tt = tag_read(restoreFile, minorVersion); if (tt == TAG_NO_TAG) break; + tags[tt] = 0; // tag read if (fileType == TAGTYPE_PLAYER_NAME) break; -- cgit v1.2.3-54-g00ecf