changed default vol buttons to up and down

because that's what a sane person would set them to
This commit is contained in:
2022-01-15 23:18:52 -05:00
committed by Hay1tsme
parent aa2e93faa3
commit 3c803e2db4
2 changed files with 4 additions and 4 deletions

View File

@ -29,8 +29,8 @@ void mercury_io_config_load(
cfg->vk_test = GetPrivateProfileIntW(L"io4", L"test", 0x2D, filename);
cfg->vk_service = GetPrivateProfileIntW(L"io4", L"service", 0x2E, filename);
cfg->vk_vol_up = GetPrivateProfileIntW(L"io4", L"volup", 0x24, filename);
cfg->vk_vol_down = GetPrivateProfileIntW(L"io4", L"voldown", 0x23, filename);
cfg->vk_vol_up = GetPrivateProfileIntW(L"io4", L"volup", 0x26, filename);
cfg->vk_vol_down = GetPrivateProfileIntW(L"io4", L"voldown", 0x28, filename);
for (i = 0 ; i < 240 ; i++) {
swprintf_s(key, _countof(key), L"cell%i", i + 1);