Created
August 23, 2019 16:30
-
-
Save jpcima/713afd24344ab056387e6cc994a33c0c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/chips/vgm_file_dumper.cpp b/src/chips/vgm_file_dumper.cpp | |
index 8f052b4..79587c6 100644 | |
--- a/src/chips/vgm_file_dumper.cpp | |
+++ b/src/chips/vgm_file_dumper.cpp | |
@@ -52,7 +52,7 @@ VGMFileDumper::VGMFileDumper(OPNFamily f) | |
std::memset(&m_vgm_head, 0, sizeof(VgmHead)); | |
std::memcpy(m_vgm_head.magic, "Vgm ", 4); | |
m_vgm_head.version = 0x00000150; | |
- std::fseek(m_output, 0x40, SEEK_SET); | |
+ std::fseek(m_output, 0x38, SEEK_SET); | |
g_master = this; | |
} | |
} | |
@@ -69,10 +69,10 @@ VGMFileDumper::~VGMFileDumper() | |
std::fseek(m_output, 0x00, SEEK_SET); | |
m_vgm_head.total_samples = m_samples_written; | |
- m_vgm_head.offset_loop = 0x0C; //FIXME: Verify correctness of loop begin (should be a begin of song) | |
+ m_vgm_head.offset_loop = 0x1C; //FIXME: Verify correctness of loop begin (should be a begin of song) | |
m_vgm_head.loop_samples = m_samples_written - 1; | |
- m_vgm_head.eof_offset = (0x40 + m_bytes_written - 4); | |
- m_vgm_head.offset_data = 0x0C; | |
+ m_vgm_head.eof_offset = (0x38 + m_bytes_written - 4); | |
+ m_vgm_head.offset_data = 0x04; | |
//! FIXME: Make proper endianess suporrt | |
std::fwrite(&m_vgm_head, 1, sizeof(VgmHead), m_output); | |
fclose(m_output); | |
@@ -89,7 +89,7 @@ void VGMFileDumper::setRate(uint32_t rate, uint32_t clock) | |
void VGMFileDumper::reset() | |
{ | |
OPNChipBaseBufferedT::reset(); | |
- std::fseek(m_output, 0x40, SEEK_SET); | |
+ std::fseek(m_output, 0x38, SEEK_SET); | |
m_samples_written = 0; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment