diff --git a/macosx/SDLMain.m b/macosx/SDLMain.m index 8354fe202..33e3ea030 100644 --- a/macosx/SDLMain.m +++ b/macosx/SDLMain.m @@ -129,7 +129,7 @@ static NSString *getApplicationName(void) { NSString *path; - path = [@"~/Library/Application Support" stringByExpandingTildeInPath]; + path = [@"~/Library/Application Support/TuxPaint" stringByExpandingTildeInPath]; [path getCString:(macosx.preferencesPath)]; } diff --git a/macosx/wrapperdata.h b/macosx/wrapperdata.h index 123629d7f..34f29c7a1 100644 --- a/macosx/wrapperdata.h +++ b/macosx/wrapperdata.h @@ -14,14 +14,14 @@ struct WrapperDataStruct { - char dataPath[2048]; // path to data folder inside application bundle - char preferencesPath[2048]; // path to the user's preferences folder + char dataPath[2048]; // path to data folder inside Tux Paint application bundle + char preferencesPath[2048]; // path to the user's Tux Paint preferences folder char fontsPath[2048]; // path to the user's fonts folder - int foundSDL; // was SDL.framework found? - int foundSDL_image; // was SDL_image.framework found? - int foundSDL_mixer; // was SDL_mixer.framework found? - int cocoaKeystrokes; // should keystrokes be intercepted by Cocoa wrapper? - int menuAction; // was the action initiated by a Mac OS X menu selection? + int foundSDL; // was SDL.framework found? + int foundSDL_image; // was SDL_image.framework found? + int foundSDL_mixer; // was SDL_mixer.framework found? + int cocoaKeystrokes; // should keystrokes be intercepted by Cocoa wrapper? + int menuAction; // was the action initiated by a Mac OS X menu selection? }; typedef struct WrapperDataStruct WrapperData;