AppleWin/source/frontends/common2/programoptions.h
Andrea Odetti 7037582907 Allow to turn the circle range of a gamepad to a square (as the Apple ][).
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2020-10-17 19:19:46 +01:00

30 lines
532 B
C++

#pragma once
#include <string>
struct EmulatorOptions
{
std::string disk1;
std::string disk2;
bool createMissingDisks;
std::string snapshot;
int memclear;
bool log;
bool benchmark;
bool headless;
bool ntsc;
bool squaring; // turn the x/y range to a square
bool saveConfigurationOnExit;
bool useQtIni; // use Qt .ini file (read only)
bool run; // false if options include "-h"
};
bool getEmulatorOptions(int argc, const char * argv [], const std::string & version, EmulatorOptions & options);