Skip to content

Commit 8a1da8f

Browse files
committed
😢
1 parent 8147ff5 commit 8a1da8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

software/player/src/segavideo_player.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ static uint32_t nextFrameNum;
140140
bool segavideo_validateHeader(const uint8_t* videoData) {
141141
const SegaVideoHeader* header = (const SegaVideoHeader*)videoData;
142142

143+
/*
143144
// No memcmp in SGDK...
144145
for (uint16_t i = 0; i < sizeof(header->magic); ++i) {
145146
if (header->magic[i] != SEGAVIDEO_HEADER_MAGIC[i]) {
@@ -148,7 +149,6 @@ bool segavideo_validateHeader(const uint8_t* videoData) {
148149
}
149150
}
150151
151-
/*
152152
if (header->format != SEGAVIDEO_HEADER_FORMAT) {
153153
kprintf("Header format does not match! New revision?\n");
154154
return false;

0 commit comments

Comments
 (0)