diff options
author | deva <deva> | 2006-07-20 17:53:04 +0000 |
---|---|---|
committer | deva <deva> | 2006-07-20 17:53:04 +0000 |
commit | c8df40b62cf30029a4acd1a57c8c54add54dda9b (patch) | |
tree | 42d06a4d502c6e0fd0cdbf7f836fdaffd847efa5 /lib/file.h | |
parent | a09f1b932560f11caf34a567ee226446a496a584 (diff) |
Utilized the global info object.
Utilized the global info object.
Diffstat (limited to 'lib/file.h')
-rw-r--r-- | lib/file.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -28,7 +28,6 @@ #ifndef __MIAV_FILE_H__ #define __MIAV_FILE_H__ -#include "info.h" #include <stdio.h> #include <vector> @@ -41,7 +40,7 @@ class File { public: - File(char *filename, char* ext, Info* info); + File(char *filename, char* ext); ~File(); int Write(void* data, int size); @@ -62,7 +61,6 @@ public: private: volatile n_savestate savestate; - Info* info; std::vector<std::string> filelist; |