Change INIPATH default to cover new HLSL presets (ini/presets) (nw)

This commit is contained in:
Scott Stone 2016-03-30 00:38:08 -04:00
parent f969f32718
commit 28c9be35ea
3 changed files with 2 additions and 4 deletions

View File

@ -126,5 +126,3 @@ Presets
../ini/presets/lcd-matrix.ini for screens with STN LCD matrix (rename to lcd.ini or <system>.ini)
../ini/presets/gameboy.ini for Game Boy screen (same as lcd-matrix.ini with greenish color transformation)
../ini/presets/gba.ini for Game Boy Advance screen (same as lcd.ini)
Copy them to ../ini/ to use.

View File

@ -39,7 +39,7 @@ const options_entry emu_options::s_option_entries[] =
{ OPTION_SAMPLEPATH ";sp", "samples", OPTION_STRING, "path to samplesets" },
{ OPTION_ARTPATH, "artwork", OPTION_STRING, "path to artwork files" },
{ OPTION_CTRLRPATH, "ctrlr", OPTION_STRING, "path to controller definitions" },
{ OPTION_INIPATH, ".;ini", OPTION_STRING, "path to ini files" },
{ OPTION_INIPATH, ".;ini;ini/presets", OPTION_STRING, "path to ini files" },
{ OPTION_FONTPATH, ".", OPTION_STRING, "path to font files" },
{ OPTION_CHEATPATH, "cheat", OPTION_STRING, "path to cheat files" },
{ OPTION_CROSSHAIRPATH, "crosshair", OPTION_STRING, "path to crosshair files" },

View File

@ -61,7 +61,7 @@
#ifndef INI_PATH
#if defined(SDLMAME_WIN32)
#define INI_PATH ".;ini"
#define INI_PATH ".;ini;ini/presets"
#elif defined(SDLMAME_MACOSX)
#define INI_PATH "$HOME/Library/Application Support/APP_NAME;$HOME/.APP_NAME;.;ini"
#else