ref: 7442f4167c59bc041ba46fd0b0fee592a5de282f
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);