Path: chuka.playstation.co.uk!news From: "John Blackburne" Newsgroups: scee.yaroze.programming.codewarrior Subject: Re: HELP!!!!! Date: Tue, 19 Jan 1999 22:41:54 +0000 Organization: PlayStation Net Yaroze (SCEE) Lines: 50 Message-ID: <7831nb$nli1@chuka.playstation.co.uk> References: <36A4E6EB.6A6041FE@btinternet.com> NNTP-Posting-Host: th-pm00-50.ndirect.co.uk Mime-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Newsreader: Microsoft Outlook Express Macintosh Edition - 4.5 (0410) ---------- In article <36A4E6EB.6A6041FE@btinternet.com>, James Duffield wrote: > HELP!!!!!!! > > I received my Net Yaroze about a week ago, and am having major > trouble getting the 3D demo supplied by CW to work. > I Have succesfully converted all files and batch files to CW, > but whenever i try to run the program, it looks as though the vertical > hold has stopped working, the screen just keeps on scrolling > upwards. Sound like you've got a PAL TV with an NTSC signal, or vice versa. I think the sample that come with CodeWarrior are all set up for NTSC, but are easy enough to chenge to PAL: look through the code for a line like: SetVideoMode(MODE_NTSC); and change it to SetVideoMode(MODE_PAL); , recompile and see if this fixes it. > Also when you have a program with multiple targets, how do you > get CW to load all targets into memory?, or is this not the way it > works? CW's multiple targets capability lets you create different programs for different platforms in the same project. The programs usually have enough in commmon that it makes sense to combine them in such a way, e.g. they could be Yaroze and Windows versions of a program with the AI code the same in both versions. CodeWarrior helps you manage the programs, keep them in sync and helps you keep track of common and plaform-specific components. > The tutorial for 3D Demo in the CW Booklet just stops > after tutorial 2, which has not helped me very much. > Also the targeting yaroze manual supplied with CW makes > various refrences to the IDE user guide, i do not have this manual > should it have been supplied with CW?. A lot of the documentation only exists in digital form: for a guide to CodeWarrior and the IDE look in the 'Targeting Net Yaroze' document, available in PDF and other formats on the CD. John