Skip to content
Snippets Groups Projects
Verified Commit 6ed522d3 authored by João Magalhães's avatar João Magalhães :rocket:
Browse files

docs: small comment change

parent 66c0c872
No related branches found
No related tags found
1 merge request!19Initial tentative audio support 🔉
Pipeline #2261 failed
......@@ -111,7 +111,7 @@ impl Apu {
0xff18 => {
self.ch2_wave_length = (self.ch2_wave_length & 0xff00) | value as u16;
}
// 0xFF19 — NR24: Channel 1 wavelength high & control
// 0xFF19 — NR24: Channel 2 wavelength high & control
0xff19 => {
self.ch2_wave_length =
(self.ch2_wave_length & 0x00ff) | (((value & 0x07) as u16) << 8);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment