diff --git a/libs/video/renderer/vulkan/render.c b/libs/video/renderer/vulkan/render.c index 8085022fd..ca0fab813 100644 --- a/libs/video/renderer/vulkan/render.c +++ b/libs/video/renderer/vulkan/render.c @@ -283,7 +283,7 @@ QFV_RunRenderJob (vulkan_ctx_t *ctx) __auto_type step = &job->steps[i]; if (!step->process) { // run render and compute steps automatically only if there's no - // process for the step (the idea is the proces uses the compute + // process for the step (the idea is the process uses the compute // and renderpass objects for its own purposes). if (step->render) { run_renderpass (step->render->active, ctx, 0); diff --git a/libs/video/renderer/vulkan/render_load.c b/libs/video/renderer/vulkan/render_load.c index 52737a38f..101f5dc20 100644 --- a/libs/video/renderer/vulkan/render_load.c +++ b/libs/video/renderer/vulkan/render_load.c @@ -189,7 +189,7 @@ count_step_stuff (qfv_stepinfo_t *step, objcount_t *counts) } if (!step->render && !step->compute && !step->process) { Sys_Error ("%s: invalid step: must have at least one of " - "proces/render/compute", step->name); + "process/render/compute", step->name); } if (step->render) { __auto_type rinfo = step->render;