From 01a41ba6a4e4d97c41a9eb264b1e54303784fc35 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 22 Aug 2018 00:26:50 +0200 Subject: [PATCH] fixed Ocean not displaying at all at low detail --- graph.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/graph.cpp b/graph.cpp index 40f9fba5..88ec1f35 100644 --- a/graph.cpp +++ b/graph.cpp @@ -4164,9 +4164,11 @@ void drawcell(cell *c, transmatrix V, int spinv, bool mirrored) { // actually draw the floor if(chasmg == 2) ; + else if(chasmg && wmspatial && detaillevel == 0) { + draw_qfi(c, (*Vdp), darkena(fcol, fd, 0x80), PPR_LAKELEV); + } else if(chasmg && wmspatial) { - if(detaillevel == 0) return; - + int col = c->land == laCocytus ? 0x080808FF : 0x101010FF; if(qfi.fshape == &shCloudFloor)