mirror of
https://gitlab.com/rnger/amath
synced 2026-01-11 23:56:36 +00:00
Fixed AROS typecasting
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user