populate default debug.ini with more values

This commit is contained in:
RickyRister 2025-01-02 21:39:08 -08:00
parent 0402d4b853
commit 98b28a0c21

View file

@ -8,6 +8,11 @@ DebugSettings::DebugSettings(const QString &settingPath, QObject *parent)
// force debug.ini to be created if it doesn't exist yet // force debug.ini to be created if it doesn't exist yet
if (!QFile(settingPath + "debug.ini").exists()) { if (!QFile(settingPath + "debug.ini").exists()) {
setValue(false, "showCardId", "debug"); setValue(false, "showCardId", "debug");
setValue(false, "onStartup", "localgame");
setValue(1, "playerCount", "localgame");
setValue("path/to/deck", "Player 1", "localgame", "deck");
setValue("path/to/deck", "Player 2", "localgame", "deck");
} }
} }