mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-06 05:52:48 -05:00
Any Mac that can handle CFM-68K code must have at least a 68020 CPU, and hence
be equipped with Color QuickDraw, as are all PowerPC systems. Hence, don't bother with support for basic QuickDraw in the CFM-68K and PowerPC builds. [originally from svn r2431]
This commit is contained in:
@ -27,7 +27,12 @@ struct mac_gestalts {
|
||||
|
||||
extern struct mac_gestalts mac_gestalts;
|
||||
|
||||
#if TARGET_RT_MAC_CFM
|
||||
/* All systems that can use CFM have Color QuickDraw */
|
||||
#define HAVE_COLOR_QD() 1
|
||||
#else
|
||||
#define HAVE_COLOR_QD() (mac_gestalts.qdvers > gestaltOriginalQD)
|
||||
#endif
|
||||
|
||||
typedef struct {
|
||||
/* Config that created this session */
|
||||
|
Reference in New Issue
Block a user