From 9161ca9e48952dc3e082e5af08264638c41accfa Mon Sep 17 00:00:00 2001 From: cam900 Date: Tue, 10 Dec 2024 22:09:25 +0900 Subject: [PATCH] shared/xbox_nv2a.cpp: Fixed a spelling error in two comments. (#13066) --- src/mame/shared/xbox_nv2a.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/shared/xbox_nv2a.cpp b/src/mame/shared/xbox_nv2a.cpp index 6f9bfb8ac8233..eafbb674a7228 100644 --- a/src/mame/shared/xbox_nv2a.cpp +++ b/src/mame/shared/xbox_nv2a.cpp @@ -2191,7 +2191,7 @@ void nv2a_renderer::render_register_combiners(int32_t scanline, const nv2a_raste // 2: compute // 2.1: initialize combiner_initialize_registers(threadid, colorf); - // 2.2: general cmbiner stages + // 2.2: general combiner stages for (n = 0; n < combiner.setup.stages; n++) { // 2.2.1 initialize combiner_initialize_stage(threadid, n); @@ -2203,7 +2203,7 @@ void nv2a_renderer::render_register_combiners(int32_t scanline, const nv2a_raste // 2.2.4 map outputs to registers combiner_map_stage_output(threadid, n); } - // 2.3: final cmbiner stage + // 2.3: final combiner stage combiner_initialize_final(threadid); combiner_map_final_input(threadid); combiner_final_output(threadid);