diff options
author | Darrell Anderson <[email protected]> | 2012-04-13 00:14:02 -0500 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2012-04-13 00:14:02 -0500 |
commit | c3f2c830d0394a175f308b1866b09143e28b2fe0 (patch) | |
tree | 0cbb52aa3b8b12827d45cdda7fe8cd7907f3a3c9 /kig/filters/kseg-defs.h | |
parent | 33cecfe986fcea059c65f4e29a26bdeb074f4a70 (diff) | |
download | tdeedu-c3f2c830d0394a175f308b1866b09143e28b2fe0.tar.gz tdeedu-c3f2c830d0394a175f308b1866b09143e28b2fe0.zip |
Fix inadvertent "TQ" changes.
Diffstat (limited to 'kig/filters/kseg-defs.h')
-rw-r--r-- | kig/filters/kseg-defs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kig/filters/kseg-defs.h b/kig/filters/kseg-defs.h index 5319afaf..c9a57447 100644 --- a/kig/filters/kseg-defs.h +++ b/kig/filters/kseg-defs.h @@ -61,7 +61,7 @@ inline int SIGN(double x) { return (x < 0) ? -1 : 1; } inline int INTRAND(int a, int b) { return TQMIN(a, b) + rand() % abs(a - b); } #define SQR(x) ((x) * (x)) #define CUBE(x) ((x) * (x) * (x)) -#define TQUAD(x) (((x) * (x)) * ((x) * (x))) +#define QUAD(x) (((x) * (x)) * ((x) * (x))) enum G_Type { @@ -254,9 +254,9 @@ enum MenuIDs ID_CONSTRUCTION_MAKE_INITIAL, ID_CONSTRUCTION_RECURSE, - ID_PLAY_TQUICKPLAY, + ID_PLAY_QUICKPLAY, - ID_TQUICKPLAY_SET_DIRECTORY, + ID_QUICKPLAY_SET_DIRECTORY, ID_FILE_RECENTLIST_START //should be the last entry }; |