Minor updates.

This commit is contained in:
Martin Fuhrer 2007-11-21 07:21:09 +00:00
parent 3f5292582c
commit aaadc0d011
2 changed files with 8 additions and 8 deletions

View file

@ -129,7 +129,7 @@ static NSString *getApplicationName(void)
{ {
NSString *path; NSString *path;
path = [@"~/Library/Application Support" stringByExpandingTildeInPath]; path = [@"~/Library/Application Support/TuxPaint" stringByExpandingTildeInPath];
[path getCString:(macosx.preferencesPath)]; [path getCString:(macosx.preferencesPath)];
} }

View file

@ -14,14 +14,14 @@
struct WrapperDataStruct struct WrapperDataStruct
{ {
char dataPath[2048]; // path to data folder inside application bundle char dataPath[2048]; // path to data folder inside Tux Paint application bundle
char preferencesPath[2048]; // path to the user's preferences folder char preferencesPath[2048]; // path to the user's Tux Paint preferences folder
char fontsPath[2048]; // path to the user's fonts folder char fontsPath[2048]; // path to the user's fonts folder
int foundSDL; // was SDL.framework found? int foundSDL; // was SDL.framework found?
int foundSDL_image; // was SDL_image.framework found? int foundSDL_image; // was SDL_image.framework found?
int foundSDL_mixer; // was SDL_mixer.framework found? int foundSDL_mixer; // was SDL_mixer.framework found?
int cocoaKeystrokes; // should keystrokes be intercepted by Cocoa wrapper? int cocoaKeystrokes; // should keystrokes be intercepted by Cocoa wrapper?
int menuAction; // was the action initiated by a Mac OS X menu selection? int menuAction; // was the action initiated by a Mac OS X menu selection?
}; };
typedef struct WrapperDataStruct WrapperData; typedef struct WrapperDataStruct WrapperData;