shared/xbox_nv2a.cpp: Fixed a spelling error in two comments. (#13066)

This commit is contained in:
cam900 2024-12-10 22:09:25 +09:00 committed by GitHub
parent a902c8d812
commit 9161ca9e48
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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);