mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@569 be3aeb3a-fb24-0410-a615-afba39da0efa
86 lines
1.6 KiB
Text
86 lines
1.6 KiB
Text
|
|
enum TAppMenuCommands
|
|
{
|
|
// Emu menu
|
|
EEikCmdPicoMain = 10000,
|
|
EEikCmdPicoResume,
|
|
EEikCmdPicoLoadState,
|
|
EEikCmdPicoSaveState,
|
|
EEikCmdPicoLoadROM,
|
|
EEikCmdPicoReset,
|
|
EEikCmdPicoConfig,
|
|
EEikCmdPicoKeys,
|
|
EEikCmdPicoSettings,
|
|
|
|
// Frameskip submenu
|
|
EEikCmdPicoFrameskip,
|
|
EEikCmdPicoFrameskipAuto,
|
|
EEikCmdPicoFrameskip0,
|
|
EEikCmdPicoFrameskip1,
|
|
EEikCmdPicoFrameskip2,
|
|
EEikCmdPicoFrameskip4,
|
|
EEikCmdPicoFrameskip8,
|
|
|
|
// Debug menu
|
|
EEikCmdPicoDebug,
|
|
// EEikCmdPicoDebugKillEmu,
|
|
EEikCmdPicoDebugInfo,
|
|
|
|
// config Dialog
|
|
ECtlOptDone,
|
|
// pages
|
|
ECtlOptPageMain,
|
|
ECtlOptPageSound,
|
|
ECtlOptPageMCD,
|
|
ECtlOptPageMisc,
|
|
// main page
|
|
ECtlOptRotationLabel,
|
|
ECtlOptRotation,
|
|
ECtlOptRotation0,
|
|
ECtlOptRotation90,
|
|
ECtlOptRotation180,
|
|
ECtlOptRotation270,
|
|
ECtlOptScreenModeLabel,
|
|
ECtlOptScreenMode,
|
|
ECtlOptScreenModeCenter,
|
|
ECtlOptScreenModeFit,
|
|
ECtlOptScreenModeFit2,
|
|
ECtlOptUseAltRend,
|
|
// ECtlOptUseAccTiming,
|
|
// ECtlOptUseAccSprites,
|
|
ECtlOptShowFPS,
|
|
// sound page
|
|
ECtlOptEnableSound,
|
|
ECtlOptChipSelLabel,
|
|
ECtlOptEmulateZ80,
|
|
ECtlOptEmulateYM2612,
|
|
ECtlOptEmulateSN76496,
|
|
ECtlOptSndQLabel,
|
|
ECtlOptSndQuality,
|
|
// MCD page
|
|
ECtlOptCDleds,
|
|
ECtlOptCDcdda,
|
|
ECtlOptCDpcm,
|
|
ECtlOptCDramcart,
|
|
ECtlOptCDscalerot,
|
|
ECtlOptCDbettersync,
|
|
// misc page
|
|
ECtlOpt6ButtonPad,
|
|
ECtlOptGzipStates,
|
|
ECtlOptUseSRAM,
|
|
ECtlOptMotDontUseVol,
|
|
ECtlOptRegion,
|
|
// about dialog
|
|
EEikCmdPicoAboutDoneCmd,
|
|
EEikCmdPicoAboutCreditsCmd,
|
|
ECtlPicoAboutText,
|
|
// credits
|
|
ECtlPicoCreditsText,
|
|
// debug
|
|
ECtlDebugEdit
|
|
};
|
|
|
|
|
|
#define ECtlAboutVersion 1
|
|
#define ECtlAboutLinks 2
|
|
|