Add support for specifing monitor number for dx9 games

This commit is contained in:
Bemani Witch
2020-05-19 22:09:38 +02:00
committed by Bemani Witch
parent 82416115f5
commit 30e1d033c5
4 changed files with 7 additions and 1 deletions

View File

@ -15,4 +15,5 @@ void gfx_config_load(struct gfx_config *cfg, const wchar_t *filename)
cfg->enable = GetPrivateProfileIntW(L"gfx", L"enable", 1, filename);
cfg->windowed = GetPrivateProfileIntW(L"gfx", L"windowed", 0, filename);
cfg->framed = GetPrivateProfileIntW(L"gfx", L"framed", 1, filename);
cfg->monitor = GetPrivateProfileIntW(L"gfx", L"monitor", 0, filename);
}