mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-01-13 11:11:15 +00:00
19 lines
600 B
C++
19 lines
600 B
C++
#include "config.h"
|
|
|
|
#include <iniparser.h>
|
|
#include <mortar/mortar_log.h>
|
|
|
|
void XBONE_SetupDefaultConfigOverrides(dictionary* p_dictionary)
|
|
{
|
|
MORTAR_Log("Overriding default config for Xbox One/Series");
|
|
|
|
// Use DevelopmentFiles path for disk and cd paths
|
|
// It's good to use that path since user can easily
|
|
// connect through SMB and copy the files
|
|
iniparser_set(p_dictionary, "isle:diskpath", "D:\\DevelopmentFiles\\isle\\");
|
|
iniparser_set(p_dictionary, "isle:cdpath", "D:\\DevelopmentFiles\\isle\\");
|
|
|
|
// Enable cursor by default
|
|
iniparser_set(p_dictionary, "isle:Draw Cursor", "true");
|
|
}
|