Fixed Magic mode error in Calligraphy and Shift.

This commit is contained in:
William Kendrick 2008-08-02 00:32:49 +00:00
parent 06321b867b
commit 8c8592bb11
2 changed files with 2 additions and 2 deletions

View file

@ -430,5 +430,5 @@ void calligraphy_switchout(magic_api * api, int which, int mode, SDL_Surface * c
int calligraphy_modes(magic_api * api, int which)
{
return(MODE_FULLSCREEN);
return(MODE_PAINT);
}

View file

@ -333,5 +333,5 @@ void shift_switchout(magic_api * api, int which, int mode, SDL_Surface * canvas)
int shift_modes(magic_api * api, int which)
{
return(MODE_FULLSCREEN);
return(MODE_PAINT);
}