From 2928233ac477f85800ea82e51012f9723a5ca02a Mon Sep 17 00:00:00 2001 From: Steven Noonan Date: Thu, 15 Oct 2009 10:42:49 -0700 Subject: abl-show.cc: fix constant assertion It's supposed to bomb there, not succeed. Signed-off-by: Steven Noonan --- crawl-ref/source/abl-show.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/abl-show.cc') diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc index be34c67611..3d317f1530 100644 --- a/crawl-ref/source/abl-show.cc +++ b/crawl-ref/source/abl-show.cc @@ -1255,7 +1255,7 @@ int _calc_breath_ability_range(ability_type ability) case ABIL_BREATHE_STICKY_FLAME: return 5; case ABIL_BREATHE_STEAM: return 7; default: - ASSERT("Bad breath type!"); + ASSERT(!"Bad breath type!"); break; } return (-2); -- cgit v1.2.3-54-g00ecf