From 344d0815416af58bb7bf7f7922bde61f0e1bf0a0 Mon Sep 17 00:00:00 2001 From: Bryce Covert Date: Mon, 15 Feb 2016 08:24:01 -0800 Subject: [PATCH] turning off fps. --- desktop/src-common/advent/screens/scene.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop/src-common/advent/screens/scene.clj b/desktop/src-common/advent/screens/scene.clj index c473834d..67ecf37b 100644 --- a/desktop/src-common/advent/screens/scene.clj +++ b/desktop/src-common/advent/screens/scene.clj @@ -1412,7 +1412,7 @@ void main () :inventory (assoc (utils/get-texture "inventory.png") :x 278 :y 0 :baseline 9000 :mouse-in? (zone/box 278 0 320 42) :opacity 0.8) - :fps (assoc (label "" (color :white) ) :x 5 :baseline 0 :opacity 0.1)})) + #_#_:fps (assoc (label "" (color :white) ) :x 5 :baseline 0 :opacity 0.1)})) :on-render (fn [{:keys [^FitViewport viewport] :as screen} [entities]] @@ -1431,7 +1431,7 @@ void main () (as-> entities entities (update-in entities [:save] assoc :r 0.75 :g 0.75 :b 0.75) (grow-hud screen entities :save false)))] - (label! (:fps entities) :set-text (str (game :fps))) + #_(label! (:fps entities) :set-text (str (game :fps))) (render! screen [ (if (and hud-interactable? (not (:already-saved? entities))) (:save entities) (assoc (:save entities) :opacity 0.5))