ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/Unix/main_unix.cpp
(Generate patch)

Comparing SheepShaver/src/Unix/main_unix.cpp (file contents):
Revision 1.9 by gbeauche, 2003-10-12T05:44:14Z vs.
Revision 1.10 by cebix, 2003-10-26T00:32:31Z

# Line 269 | Line 269 | int main(int argc, char **argv)
269          char str[256];
270          uint32 *boot_globs;
271          int16 i16;
272        int drive, driver;
272          int rom_fd;
273          FILE *proc_file;
274          const char *rom_path;
# Line 524 | Line 523 | int main(int argc, char **argv)
523          XPRAMInit();
524  
525          // Set boot volume
526 <        drive = PrefsFindInt32("bootdrive");
526 >        i16 = PrefsFindInt32("bootdrive");
527          XPRAM[0x1378] = i16 >> 8;
528          XPRAM[0x1379] = i16 & 0xff;
529 <        driver = PrefsFindInt32("bootdriver");
529 >        i16 = PrefsFindInt32("bootdriver");
530          XPRAM[0x137a] = i16 >> 8;
531          XPRAM[0x137b] = i16 & 0xff;
532  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines