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

Comparing BasiliskII/src/main.cpp (file contents):
Revision 1.4 by cebix, 1999-10-28T15:33:10Z vs.
Revision 1.7 by cebix, 2001-02-02T20:52:57Z

# Line 1 | Line 1
1   /*
2   *  main.cpp - Startup/shutdown code
3   *
4 < *  Basilisk II (C) 1997-1999 Christian Bauer
4 > *  Basilisk II (C) 1997-2001 Christian Bauer
5   *
6   *  This program is free software; you can redistribute it and/or modify
7   *  it under the terms of the GNU General Public License as published by
# Line 102 | Line 102 | bool InitAll(void)
102          XPRAMInit();
103  
104          // Set boot volume
105 <        int16 i16 = PrefsFindInt16("bootdrive");
105 >        int16 i16 = PrefsFindInt32("bootdrive");
106          XPRAM[0x78] = i16 >> 8;
107          XPRAM[0x79] = i16 & 0xff;
108 <        i16 = PrefsFindInt16("bootdriver");
108 >        i16 = PrefsFindInt32("bootdriver");
109          XPRAM[0x7a] = i16 >> 8;
110          XPRAM[0x7b] = i16 & 0xff;
111  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines