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

Comparing BasiliskII/src/prefs.cpp (file contents):
Revision 1.5 by cebix, 2000-04-14T19:03:48Z vs.
Revision 1.7 by cebix, 2000-07-22T16:07:17Z

# Line 58 | Line 58 | prefs_desc common_prefs_items[] = {
58          {"fpu", TYPE_BOOLEAN, false},           // Enable FPU emulation (main.cpp)
59          {"nocdrom", TYPE_BOOLEAN, false},       // Don't install CD-ROM driver (cdrom.cpp/rom_patches.cpp)
60          {"nosound", TYPE_BOOLEAN, false},       // Don't enable sound output (audio_*.cpp)
61 +        {"noclipconversion", TYPE_BOOLEAN, false}, // Don't convert clipboard contents (clip_*.cpp)
62          {"nogui", TYPE_BOOLEAN, false},         // Disable GUI (main_*.cpp)
63          {NULL, TYPE_END, false} // End of list
64   };
# Line 95 | Line 96 | void PrefsInit(void)
96          PrefsAddBool("fpu", false);
97          PrefsAddBool("nocdrom", false);
98          PrefsAddBool("nosound", false);
99 +        PrefsAddBool("noclipconversion", false);
100          PrefsAddBool("nogui", false);
101          AddPlatformPrefsDefaults();
102  
# Line 392 | Line 394 | static void write_prefs(FILE *f, const p
394                                  fprintf(f, "%s %d\n", list->name, PrefsFindInt16(list->name));
395                                  break;
396                          case TYPE_INT32:
397 <                                fprintf(f, "%s %ld\n", list->name, PrefsFindInt32(list->name));
397 >                                fprintf(f, "%s %d\n", list->name, PrefsFindInt32(list->name));
398                                  break;
399                          default:
400                                  break;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines