minor fixes

This commit is contained in:
h4570
2020-11-20 22:34:24 +01:00
parent 3d755e9983
commit 5e811b78cd
6 changed files with 26 additions and 14 deletions
+1 -1
View File
@@ -117,7 +117,7 @@ audsrv_adpcm_t *Audio::loadADPCM(char *t_path)
char *fullFilename = String::createConcatenated("host:", t_path);
FILE *file = fopen(fullFilename, "rb");
delete[] fullFilename;
fseek(file, 0L, SEEK_END);
fseek(file, 0, SEEK_END);
u32 adpcmFileSize = ftell(file);
u8 data[adpcmFileSize];
rewind(file);
+2 -2
View File
@@ -83,8 +83,8 @@ void VifSender::drawMesh(RenderData *t_renderData, Matrix t_perspective, u32 ver
i++;
}
vu_add_end_tag(currPacket);
dma_channel_wait(DMA_CHANNEL_VIF1, 0);
dma_channel_send_packet2(currPacket, DMA_CHANNEL_VIF1, 1);
dma_channel_wait(DMA_CHANNEL_VIF1, 0);
context = !context;
}
}
@@ -117,7 +117,7 @@ void VifSender::drawVertices(Mesh &t_mesh, u32 t_start, u32 t_end, VECTOR *t_ver
for (u8 j = 0; j < 4; j++)
vu_unpack_add_u32(currPacket, 128);
//// Clipping tests start
// Clipping tests start
// // const float minZ = 1;
// // const float maxZ = 65535;