~ubuntu-branches/ubuntu/maverick/vice/maverick

« back to all changes in this revision

Viewing changes to src/arch/win32/resdrivepetcbm2.rc

  • Committer: Bazaar Package Importer
  • Author(s): Zed Pobre
  • Date: 2005-02-01 11:30:26 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050201113026-3eyakzsmmheclvjg
Tags: 1.16-1
* New upstream version
* Fixes crash on 64-bit architectures (closes: #287640)
* x128 working again (closes: #286767)
* Works fine with /dev/dsp in use (not in the main changelog, but tested
  on my local machine as working).  Presumably, this also takes care of
  the issue with dsp being held.  I'm not sure if this is because I'm
  testing it on a 2.6 kernel now -- if you are still having problems
  with /dev/dsp, please reopen the bugs. (closes: #152952, #207942)
* Don't kill Makefile.in on clean

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// PET and CBM2 drive specific resources.
 
2
//
 
3
 
 
4
IDD_DRIVE_SETTINGS_DIALOG_PETCBM2 DIALOG DISCARDABLE  0, 0, 180, 160
 
5
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
 
6
FONT 8, "MS Sans Serif"
 
7
BEGIN
 
8
    GROUPBOX        "&Drive type",IDC_STATIC,5,15,60,135
 
9
    AUTORADIOBUTTON "20&31",IDC_SELECT_DRIVE_TYPE_2031,15,30,35,10,
 
10
                            BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP
 
11
    AUTORADIOBUTTON "20&40",IDC_SELECT_DRIVE_TYPE_2040,15,45,35,10,
 
12
                            BS_AUTORADIOBUTTON
 
13
    AUTORADIOBUTTON "30&40",IDC_SELECT_DRIVE_TYPE_3040,15,60,35,10,
 
14
                            BS_AUTORADIOBUTTON
 
15
    AUTORADIOBUTTON "40&40",IDC_SELECT_DRIVE_TYPE_4040,15,75,35,10,
 
16
                            BS_AUTORADIOBUTTON
 
17
    AUTORADIOBUTTON "1&001",IDC_SELECT_DRIVE_TYPE_1001,15,90,35,10,
 
18
                            BS_AUTORADIOBUTTON
 
19
    AUTORADIOBUTTON "&8050",IDC_SELECT_DRIVE_TYPE_8050,15,105,35,10,
 
20
                            BS_AUTORADIOBUTTON
 
21
    AUTORADIOBUTTON "8&250",IDC_SELECT_DRIVE_TYPE_8250,15,120,35,10,
 
22
                            BS_AUTORADIOBUTTON
 
23
    AUTORADIOBUTTON "&None",IDC_SELECT_DRIVE_TYPE_NONE,15,135,35,10,
 
24
                            BS_AUTORADIOBUTTON
 
25
    GROUPBOX        "40 &track handling",IDC_STATIC,75,15,90,60
 
26
    AUTORADIOBUTTON "Never extend",IDC_SELECT_DRIVE_EXTEND_NEVER,85,30,65,10,
 
27
                            BS_AUTORADIOBUTTON | WS_GROUP | WS_TABSTOP
 
28
    AUTORADIOBUTTON "Ask on extend",IDC_SELECT_DRIVE_EXTEND_ASK,85,45,65,10,
 
29
                            BS_AUTORADIOBUTTON
 
30
    AUTORADIOBUTTON "Extend on access",IDC_SELECT_DRIVE_EXTEND_ACCESS,
 
31
                            85,60,65,10, BS_AUTORADIOBUTTON
 
32
END
 
33