mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
- Recommit Kaiden's class item cap fix r1790 (lost during meager of Big Maps Project code) & other related variables from INT16 to INT32; increased the class item limit in mapeditor (by Buggler)
- Map Editor: Items - Hotkeys (by Buggler)
o Hotkeys ',': Left Scroll
o Hotkeys '.': Right Scroll
o ('Shift': Jump 1 page; 'Ctrl': Jump 10 pages; 'Ctrl + Shift': Jump to first/last page)
- Changed saveloadscreen previous/next hotkey to ','/'.' due to interference with input_box navigation using arrow keys (by Buggler)
git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@5877 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
+4
-4
@@ -1069,8 +1069,8 @@ void GetSaveLoadScreenUserInput()
|
||||
MoveSelectionUpOrDown( FALSE );
|
||||
break;
|
||||
|
||||
case LEFTARROW:
|
||||
// previous page
|
||||
case ',':
|
||||
// previous page, LEFTARROW not used due to interference with textbox navigation
|
||||
if ( PAGE_SLOT > 0 )
|
||||
{
|
||||
PAGE_SLOT = PAGE_SLOT - 1;
|
||||
@@ -1097,8 +1097,8 @@ void GetSaveLoadScreenUserInput()
|
||||
}
|
||||
break;
|
||||
|
||||
case RIGHTARROW:
|
||||
// next page
|
||||
case '.':
|
||||
// next page, RIGHTARROW not used due to interference with textbox navigation
|
||||
if ( PAGE_SLOT < MAX_PAGE_SLOT )
|
||||
{
|
||||
PAGE_SLOT = PAGE_SLOT + 1;
|
||||
|
||||
Reference in New Issue
Block a user