Rename APU to Apu

This commit is contained in:
scawful
2024-04-13 23:25:41 -05:00
parent 89cc0703f1
commit 3effd03f1f
5 changed files with 22 additions and 22 deletions

View File

@@ -46,7 +46,7 @@ uint16_t GetHeaderOffset(const Memory& memory) {
}
void audio_callback(void* userdata, uint8_t* stream, int len) {
auto* apu = static_cast<APU*>(userdata);
auto* apu = static_cast<Apu*>(userdata);
auto* buffer = reinterpret_cast<int16_t*>(stream);
for (int i = 0; i < len / 2; i++) { // Assuming 16-bit samples