Final 0.6.2 release; misc. bug fixes & Windows version

This commit is contained in:
srs5694
2010-01-29 17:44:04 -05:00
parent 0a6973119c
commit e321d444dc
15 changed files with 62 additions and 79 deletions

View File

@@ -208,7 +208,7 @@ int DiskIO::Seek(uint64_t sector) {
// size with the number of bytes read.
// Returns the number of bytes read into buffer.
int DiskIO::Read(void* buffer, int numBytes) {
int blockSize = 512, i, numBlocks, retval = 0;
int blockSize = 512, numBlocks, retval = 0;
char* tempSpace;
// If disk isn't open, try to open it....