diff options
| author | LPFaint99 <lpfaint99@gmail.com> | 2009-03-07 08:07:11 +0000 |
|---|---|---|
| committer | LPFaint99 <lpfaint99@gmail.com> | 2009-03-07 08:07:11 +0000 |
| commit | f0431631a8a384ee0ff2c8bff2690ea56bde7d3b (patch) | |
| tree | bb7be69519e9fd164f2f717dadcd48775f8525ea /Source/Core/DiscIO/Src/DriveBlob.cpp | |
| parent | 251179b00b4cef9f8843da23ed9e96369271d77b (diff) | |
fix some gcc warnings
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2590 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DiscIO/Src/DriveBlob.cpp')
| -rw-r--r-- | Source/Core/DiscIO/Src/DriveBlob.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/Src/DriveBlob.cpp b/Source/Core/DiscIO/Src/DriveBlob.cpp index c4dcc85faf..e8f5ab22ad 100644 --- a/Source/Core/DiscIO/Src/DriveBlob.cpp +++ b/Source/Core/DiscIO/Src/DriveBlob.cpp @@ -100,9 +100,9 @@ namespace DiscIO void DriveReader::GetBlock(u64 block_num, u8 *out_ptr) { - u32 NotUsed; u8 * lpSector = new u8[m_blocksize]; #ifdef _WIN32 + u32 NotUsed; u64 offset = m_blocksize * block_num; LONG off_low = (LONG)offset & 0xFFFFFFFF; LONG off_high = (LONG)(offset >> 32); |
