diff options
Diffstat (limited to 'src/Savestate.h')
-rw-r--r-- | src/Savestate.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Savestate.h b/src/Savestate.h index 60d34cc..5fe4ddc 100644 --- a/src/Savestate.h +++ b/src/Savestate.h @@ -19,6 +19,7 @@ #ifndef SAVESTATE_H #define SAVESTATE_H +#include <string> #include <stdio.h> #include "types.h" @@ -28,7 +29,7 @@ class Savestate { public: - Savestate(const char* filename, bool save); + Savestate(std::string filename, bool save); ~Savestate(); bool Error; |