🚸 chore: draw cursor by default

This commit is contained in:
Helloyunho 2025-07-05 11:11:44 +09:00
parent 527d5fa9f9
commit 4875cec9ec

View File

@ -12,4 +12,7 @@ void XBONE_SetupDefaultConfigOverrides(dictionary* p_dictionary)
// connect through SMB and copy the files // connect through SMB and copy the files
iniparser_set(p_dictionary, "isle:diskpath", "D:\\DevelopmentFiles\\isle\\"); iniparser_set(p_dictionary, "isle:diskpath", "D:\\DevelopmentFiles\\isle\\");
iniparser_set(p_dictionary, "isle:cdpath", "D:\\DevelopmentFiles\\isle\\"); iniparser_set(p_dictionary, "isle:cdpath", "D:\\DevelopmentFiles\\isle\\");
// Enable cursor by default
iniparser_set(p_dictionary, "isle:Draw Cursor", "true");
} }