shithub: pt2-clone

ref: 9b62d4de7960879e6524f7bcaeb3c007654a8301
dir: /src/pt2_config.h/

View raw version
#pragma once

#include <stdint.h>
#include <stdbool.h>

struct ptConfig_t
{
	char *defModulesDir, *defSamplesDir;
	bool dottedCenterFlag, pattDots, a500LowPassFilter, compoMode, autoCloseDiskOp, hideDiskOpDates, hwMouse;
	bool transDel, fullScreenStretch, vsyncOff, modDot, blankZeroFlag, realVuMeters, rememberPlayMode;
	int8_t stereoSeparation, videoScaleFactor, accidental;
	uint16_t quantizeValue;
	uint32_t soundFrequency, soundBufferSize;
} ptConfig;

void loadConfig(void);