Fix all -Wwrite-strings warnings

This commit is contained in:
Cameron Cawley
2019-05-04 14:07:02 +01:00
parent 85b3bdebd1
commit f91eb18152
9 changed files with 18 additions and 18 deletions

View File

@ -28,7 +28,7 @@
class Savestate
{
public:
Savestate(char* filename, bool save);
Savestate(const char* filename, bool save);
~Savestate();
bool Error;
@ -39,7 +39,7 @@ public:
u32 CurSection;
void Section(char* magic);
void Section(const char* magic);
void Var8(u8* var);
void Var16(u16* var);