ref: 6f0d2c3ee753d40fd9bc5d325fe6605e4e38c3bc
dir: /src/pt2_config.h/
#pragma once #include <stdint.h> #include <stdbool.h> struct config_t { char *defModulesDir, *defSamplesDir; bool dottedCenterFlag, pattDots, a500LowPassFilter, compoMode, autoCloseDiskOp, hideDiskOpDates, hwMouse; bool transDel, fullScreenStretch, vsyncOff, modDot, blankZeroFlag, realVuMeters, rememberPlayMode; bool sampleLowpass; int8_t stereoSeparation, videoScaleFactor, accidental; uint16_t quantizeValue; uint32_t soundFrequency, soundBufferSize; } config; void loadConfig(void);