From ea60f9f78bac505a5aeeb4d34b927f04ec3121b3 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 11 Feb 2017 11:24:52 -0500 Subject: world bg, other fixes --- src/brice.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/brice.cpp') diff --git a/src/brice.cpp b/src/brice.cpp index e1a5b3e..638c02f 100644 --- a/src/brice.cpp +++ b/src/brice.cpp @@ -49,8 +49,7 @@ namespace game { std::ofstream out ("brice.dat", std::ios::out | std::ios::binary); std::string data = std::to_string(brice.size()) + '\n'; - if (!out.is_open()) - UserError("Cannot open brice data file"); + UserAssert(out.is_open(), "Cannot open brice data file"); for (const auto& i : brice) { data.append(i.first + '\n'); -- cgit v1.2.3