From 520a8bbfdfb60306f6111d90cbb6b8b3a89db252 Mon Sep 17 00:00:00 2001 From: Kevin Shanahan Date: Sun, 24 Feb 2013 11:59:48 +1030 Subject: [PATCH] qbsp: fix comment in PortalThru helper Signed-off-by: Kevin Shanahan --- qbsp/portals.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbsp/portals.c b/qbsp/portals.c index 1ccdb138..582b3e00 100644 --- a/qbsp/portals.c +++ b/qbsp/portals.c @@ -60,7 +60,7 @@ PortalThru(int contents0, int contents1) if (contents0 == CONTENTS_SOLID || contents1 == CONTENTS_SOLID) return false; - /* If contents values are the same, contents are equal */ + /* If contents values are the same and not solid, can see through */ if (contents0 == contents1) return true;