- Added a setting to skip delay when showing damage to the whole party. It's a hidden preference at the moment, like skip startup splash.

- Replaced all instances of Boolean with bool, TRUE with true, FALSE with false. (Except for a few cases where this resulted in a compile error.)

git-svn-id: http://openexile.googlecode.com/svn/trunk@38 4ebdad44-0ea0-11de-aab3-ff745001d230
This commit is contained in:
2009-04-27 19:41:06 +00:00
parent f28053ed0e
commit e0115dd668
80 changed files with 3703 additions and 3694 deletions

View File

@@ -75,13 +75,13 @@ typedef struct globalGammas {
// * ****************************************************************************** *
// Function Prototypes
Boolean IsGammaAvailable(void);
Boolean IsOneGammaAvailable(GDHandle theGDevice);
bool IsGammaAvailable(void);
bool IsOneGammaAvailable(GDHandle theGDevice);
// These routines help you determine whether you can use the Gamma Table Utils
// on the current machine. The first checks all attached monitors, and the
// second just checks the indicated monitor. Each returns TRUE if you can
// use the functions, or FALSE if you can't. <20> Note: Before calling any other
// second just checks the indicated monitor. Each returns true if you can
// use the functions, or false if you can't. <20> Note: Before calling any other
// Gamma Table function below, use this function to see if you are allowed.
// * ****************************************************************************** *