We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8147ff5 commit 8a1da8fCopy full SHA for 8a1da8f
software/player/src/segavideo_player.c
@@ -140,6 +140,7 @@ static uint32_t nextFrameNum;
140
bool segavideo_validateHeader(const uint8_t* videoData) {
141
const SegaVideoHeader* header = (const SegaVideoHeader*)videoData;
142
143
+/*
144
// No memcmp in SGDK...
145
for (uint16_t i = 0; i < sizeof(header->magic); ++i) {
146
if (header->magic[i] != SEGAVIDEO_HEADER_MAGIC[i]) {
@@ -148,7 +149,6 @@ bool segavideo_validateHeader(const uint8_t* videoData) {
148
149
}
150
151
-/*
152
if (header->format != SEGAVIDEO_HEADER_FORMAT) {
153
kprintf("Header format does not match! New revision?\n");
154
return false;
0 commit comments