Changeset 1849

Show
Ignore:
Timestamp:
11/06/08 23:16:01 (2 months ago)
Author:
ddb174
Message:

Drizzle8 commit.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • drizzle/DrizzlePrp/src/gui/help.txt

    r1844 r1849  
    11Welcome to Drizzle! 
     2 
     3 
     4To convert Myst 5 Ages the simple way: 
     5-------------------------------------- 
     61) Go to the Simplicity tab, then the MystV tab. 
     72) Select the folder where you installed Myst 5. (By default, it's "C:\Program Files\Ubisoft\Cyan Worlds\Myst V End Of Ages".) 
     83) Select the folder where you installed PathOfTheShell/CompleteChronicles. (By default it's "C:\Program Files\Ubi Soft\Cyan Worlds\Uru - Ages Beyond Myst" or "C:\Program Files\Ubi Soft\Cyan Worlds\Myst Uru Complete Chronicles".) 
     94) Click the "Start..." button. 
     105) In the PathOfTheShell/CompleteChronicles folder, run SoundDecompress.exe. (SoundDecompress.exe may crash if you haven't run Uru at least once.) 
    211 
    312 
  • drizzle/DrizzlePrp/src/shared/Flt.java

    r1842 r1849  
    103103        return this.rawdata; 
    104104    } 
     105    public void compile(Bytedeque c) 
     106    { 
     107        c.writeInt(rawdata); 
     108    } 
    105109    public void compile(IBytedeque deque) 
    106110    { 
  • drizzle/DrizzlePrp/src/shared/Vertex.java

    r1842 r1849  
    8282        z.compile(data); 
    8383    } 
     84    public void compile(Bytedeque data) 
     85    { 
     86        x.compile(data); 
     87        y.compile(data); 
     88        z.compile(data); 
     89    } 
    8490    public float dot(Vertex v2) 
    8591    {