From 0469da54bbdf386ab0ce0084731178db1f74d3c8 Mon Sep 17 00:00:00 2001 From: danij Date: Sat, 12 Oct 2013 23:49:22 +0100 Subject: [PATCH] World|Map: Defined missing Map::lumobj(int index) lookup method --- doomsday/client/include/world/map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doomsday/client/include/world/map.h b/doomsday/client/include/world/map.h index f83f5a4cbe..5d2d7d8bc1 100644 --- a/doomsday/client/include/world/map.h +++ b/doomsday/client/include/world/map.h @@ -591,7 +591,7 @@ class Map /** * Lookup a lumobj in the map by it's unique @a index. */ - Lumobj *lumobj(int index) const; + inline Lumobj *lumobj(int index) const { return lumobjs().at(index); } /** * Attempt to add a new bias light source to the map (a copy is made).