Skip to content

Commit 9d7d4c1

Browse files
committed
三个所有alt+`改为alt+1,在linux上不冲突(大概)
1 parent 4ec40b6 commit 9d7d4c1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

assets/scene/keyset_out.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ end
3838
function scene.mouseDown(_,_,k) if k==2 then SCN.back('fadeHeader') end end
3939
function scene.keyDown(key,isRep)
4040
if isRep then return true end
41-
if key=='`' and isAltPressed then
41+
if key=='1' and isAltPressed then
4242
scene.widgetList.Sacry._visible=true
4343
scene.widgetList.Sgela._visible=true
4444
scene.widgetList.Sbrik._visible=true

assets/scene/mode_exterior.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ function scene.keyDown(key,isRep)
129129
if isRep then return true end
130130
if key=='f6' then exMap:_printModePos() return true end
131131
if key=='f5' then MSG.new('info',"Mode cache cleared") GAME._refresh() return true end
132-
if key=='`' and isAltPressed() then exMap:_unlockall() end
132+
if key=='1' and isAltPressed() then exMap:_unlockall() end
133133
sysAction(KEYMAP.sys:getAction(key))
134134
return true
135135
end

assets/scene/musicroom.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ function scene.keyDown(key,isRep)
187187
FMOD.music.seek(0)
188188
elseif act=='back' then
189189
SCN.back('fadeHeader')
190-
elseif key=='`' and isAltPressed() then
190+
elseif key=='1' and isAltPressed() then
191191
noProgress=true
192192
scene.load()
193193
elseif key=='f3' then

0 commit comments

Comments
 (0)