Path: chuka.playstation.co.uk!scea!peter_alau@playstation.sony.com From: Omar Metwally Newsgroups: scee.yaroze.programming.codewarrior Subject: Undefined Macros in CW Date: Sat, 17 Oct 1998 15:18:47 -0700 Organization: SCEA News Server Lines: 18 Message-ID: <362917C7.8F6BC33@aol.com> NNTP-Posting-Host: 166-7-20.ipt.aol.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Mailer: Mozilla 4.07 [en] (Win95; I) I tried to compile a 2-player program had the following: if(padd & PAD1_START) return(98); if(padd & PAD1_SELECT) return(99); if(padd & PAD1_RIGHT) CheckCollision(RIGHT); if(padd & PAD1_LEFT) CheckCollision(LEFT); if(padd & PAD1_UP) CheckCollision(UP); if(padd & PAD1_DOWN) CheckCollision(DOWN); This did not work--I checked the pad.h file and the only macros defined are things for 1-player stuff. The macros don't include 2-player stuff such as PAD1_DOWN; it's just set to PADdown or something for only the 1-player controller. What should I do to fix this problem?