Skip to content

Instantly share code, notes, and snippets.

@notsunohito
Last active May 1, 2016 06:39
Show Gist options
  • Select an option

  • Save notsunohito/c0b9e2fceaf21a6636bcb19fe6731cb1 to your computer and use it in GitHub Desktop.

Select an option

Save notsunohito/c0b9e2fceaf21a6636bcb19fe6731cb1 to your computer and use it in GitHub Desktop.
ミニマップのサイズを2倍にする方法

ミニマップのサイズを2倍にする方法

  1. C:\Riot Games\League of Legends\Config に行く。
  2. game.cfg をメモ帳で開く。
  3. MinimapScale=1.0000 の行を MinimapScale=2.0000 に変更し保存して閉じる。
  4. PersistedSettings.json をメモ帳で開く。
  5. 下記のvalueの値を
{
"name": "MinimapScale",
"value": "1.0000"
},

↓の通りに書き換え保存して閉じる。

{
"name": "MinimapScale",
"value": "2.0000"
},

出典

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment