diff --git a/app/system/preferences_amiga.cpp b/app/system/preferences_amiga.cpp index 500441a8..286d9329 100644 --- a/app/system/preferences_amiga.cpp +++ b/app/system/preferences_amiga.cpp @@ -80,14 +80,14 @@ bool AmigaPreferences::Save() bool AmigaPreferences::SavePrefs(const char* name) { - BPTR file = Open((char*)name, MODE_NEWFILE); + BPTR file = Open((CONST_STRPTR)name, MODE_NEWFILE); if (!file) { return false; } char *out = GetDescription(); - FPuts(out, file); + FPuts(file, (CONST_STRPTR)out); Close(file); return (IoErr() == NULL); }