diff options
| author | Maarten ter Huurne <maarten@treewalker.org> | 2008-09-23 22:28:33 +0000 |
|---|---|---|
| committer | Maarten ter Huurne <maarten@treewalker.org> | 2008-09-23 22:28:33 +0000 |
| commit | b79bd60b7ccc2e5262f561968657d7f72ba79ad1 (patch) | |
| tree | 1b4fe576670a7116cfb0f5302dbaefff8fa18d9e /Source | |
| parent | 851dbcd7d63586ca33f8b3511b478dc8a5382e04 (diff) | |
Fixed error in previous commit: FSTEntry is no longer an inner class..
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@648 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/DiscIO/Src/VolumeDirectory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/Src/VolumeDirectory.cpp b/Source/Core/DiscIO/Src/VolumeDirectory.cpp index bc92dd96c8..3cb219023d 100644 --- a/Source/Core/DiscIO/Src/VolumeDirectory.cpp +++ b/Source/Core/DiscIO/Src/VolumeDirectory.cpp @@ -434,7 +434,7 @@ void CVolumeDirectory::WriteEntry(const FSTEntry& entry, u32& fstOffset, u32& na }
#ifdef _WIN32
-static bool ReadFoundFile(const WIN32_FIND_DATA& ffd, CVolumeDirectory::FSTEntry& entry)
+static bool ReadFoundFile(const WIN32_FIND_DATA& ffd, FSTEntry& entry)
{
// ignore files starting with a .
if(strncmp(ffd.cFileName, ".", 1) == 0)
|
