mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-19 15:30:50 +00:00
[vulkan] Fix a missed array index edit
Caused by the view model implementation, and missed because gcc needs optimization to cache such errors (and my own error, of course).
This commit is contained in:
parent
f47e03e606
commit
2e33503c4c
1 changed files with 1 additions and 1 deletions
|
@ -188,7 +188,7 @@ Vulkan_RenderView (vulkan_ctx_t *ctx)
|
||||||
if (speeds) {
|
if (speeds) {
|
||||||
Sys_Printf ("frame: %g, setup: %g, mark: %g, pushdl: %g, world: %g,"
|
Sys_Printf ("frame: %g, setup: %g, mark: %g, pushdl: %g, world: %g,"
|
||||||
" sky: %g, ents: %g, water: %g, part: %g\n",
|
" sky: %g, ents: %g, water: %g, part: %g\n",
|
||||||
(t[9] - t[0]) * 1000, (t[1] - t[0]) * 1000,
|
(t[8] - t[0]) * 1000, (t[1] - t[0]) * 1000,
|
||||||
(t[2] - t[1]) * 1000, (t[3] - t[2]) * 1000,
|
(t[2] - t[1]) * 1000, (t[3] - t[2]) * 1000,
|
||||||
(t[4] - t[3]) * 1000, (t[5] - t[4]) * 1000,
|
(t[4] - t[3]) * 1000, (t[5] - t[4]) * 1000,
|
||||||
(t[6] - t[5]) * 1000, (t[7] - t[6]) * 1000,
|
(t[6] - t[5]) * 1000, (t[7] - t[6]) * 1000,
|
||||||
|
|
Loading…
Reference in a new issue