summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO
diff options
context:
space:
mode:
authorSonicadvance1 <sonicadvance1@gmail.com>2008-09-20 17:31:54 +0000
committerSonicadvance1 <sonicadvance1@gmail.com>2008-09-20 17:31:54 +0000
commit720efb825d8c91eb5f2b5f6aa24e8f4daeedb4db (patch)
treeab96e70a7da4a79be15e2a835fb1da78b001bdd3 /Source/Core/DiscIO
parent66011849cd5f66c53b7e046bfbffe41711c835d3 (diff)
Linux: I made Sconscript call wx-config inside of the main SConstruct, added a nowx argument, Made the filesystemviewer use the correct struct and fixed a silly scissor error that was made
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@589 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/DiscIO')
-rw-r--r--Source/Core/DiscIO/Src/Filesystem.h10
-rw-r--r--Source/Core/DiscIO/Src/Volume.h10
2 files changed, 10 insertions, 10 deletions
diff --git a/Source/Core/DiscIO/Src/Filesystem.h b/Source/Core/DiscIO/Src/Filesystem.h
index b2532a3206..d8f1469080 100644
--- a/Source/Core/DiscIO/Src/Filesystem.h
+++ b/Source/Core/DiscIO/Src/Filesystem.h
@@ -22,6 +22,16 @@
namespace DiscIO
{
+// file info of an FST entry
+struct SFileInfo
+{
+ u32 m_NameOffset;
+ u64 m_Offset;
+ u32 m_FileSize;
+ char m_FullPath[512];
+
+ bool IsDirectory() {return((m_NameOffset& 0xFF000000) != 0 ? true : false);}
+};
class IFileSystem
{
public:
diff --git a/Source/Core/DiscIO/Src/Volume.h b/Source/Core/DiscIO/Src/Volume.h
index c6448dfbbb..075addc815 100644
--- a/Source/Core/DiscIO/Src/Volume.h
+++ b/Source/Core/DiscIO/Src/Volume.h
@@ -23,16 +23,6 @@
#include "Common.h"
-// file info of an FST entry
-struct SFileInfo
-{
- u32 m_NameOffset;
- u64 m_Offset;
- u32 m_FileSize;
- char m_FullPath[512];
-
- bool IsDirectory() {return((m_NameOffset& 0xFF000000) != 0 ? true : false);}
-};
namespace DiscIO
{
class IVolume