Added missing values to RequestTypes4 enum.

This commit is contained in:
Greg Edwards
2014-07-14 19:20:47 -04:00
parent 766764531b
commit 05acceaacb

View File

@@ -328,7 +328,8 @@ namespace PkmnFoundations.GlobalTerminalService
case RequestTypes4.BattleVideoSearch:
case RequestTypes4.BattleVideoWatch:
return 0x59;
case RequestTypes4.TopTrainers:
case RequestTypes4.TopTrainersHead:
case RequestTypes4.TopTrainersSearch:
return 0x55;
default:
return 0x00;
@@ -358,6 +359,7 @@ namespace PkmnFoundations.GlobalTerminalService
BattleVideoSearch = 0xd9,
BattleVideoWatch = 0xda,
TopTrainers = 0xf0,
TopTrainersHead = 0xf0,
TopTrainersSearch = 0xf1
}
}