summaryrefslogtreecommitdiffhomepage
path: root/StarsEx/Video.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-03 17:24:16 +0200
committerAki <please@ignore.pl>2022-04-03 17:24:16 +0200
commitcd57c84c5fe34c2ac548d6d119a9828a303923ef (patch)
treeaac3545bcb95bf0d30b8b356c91adc492c07d3a6 /StarsEx/Video.h
parent150bd957db8eb19b1a07643317767ff5c3007f48 (diff)
downloadstarshatter-cd57c84c5fe34c2ac548d6d119a9828a303923ef.zip
starshatter-cd57c84c5fe34c2ac548d6d119a9828a303923ef.tar.gz
starshatter-cd57c84c5fe34c2ac548d6d119a9828a303923ef.tar.bz2
Removed video stats in Game
Diffstat (limited to 'StarsEx/Video.h')
-rw-r--r--StarsEx/Video.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/StarsEx/Video.h b/StarsEx/Video.h
index 87cf1f9..a35a32e 100644
--- a/StarsEx/Video.h
+++ b/StarsEx/Video.h
@@ -50,8 +50,8 @@ struct RenderStats
int total_polys;
int total_lines;
- void Clear() { nverts = npolys = nlines = ncalls =
- total_verts = total_polys = total_lines = 0; }
+ RenderStats() : total_verts {0}, total_polys {0}, total_lines {0} {}
+ void Clear() { nverts = npolys = nlines = ncalls = 0; }
};
// +--------------------------------------------------------------------+