mirror of
https://github.com/alexbatalov/fallout2-ce.git
synced 2024-11-19 14:11:15 +00:00
Add bookmarkUnHide
This commit is contained in:
parent
3331ad02b0
commit
093d4f23d8
@ -17,6 +17,7 @@
|
|||||||
|
|
||||||
namespace fallout {
|
namespace fallout {
|
||||||
|
|
||||||
|
static void bookmarkUnHide();
|
||||||
static int categoryInit();
|
static int categoryInit();
|
||||||
static int categoryExit();
|
static int categoryExit();
|
||||||
static int categoryHide();
|
static int categoryHide();
|
||||||
@ -32,6 +33,9 @@ static void mapper_mark_all_exit_grids();
|
|||||||
// 0x559748
|
// 0x559748
|
||||||
MapTransition mapInfo = { -1, -1, 0, 0 };
|
MapTransition mapInfo = { -1, -1, 0, 0 };
|
||||||
|
|
||||||
|
// 0x5598A8
|
||||||
|
static int bookmarkWin = -1;
|
||||||
|
|
||||||
// 0x5598AC
|
// 0x5598AC
|
||||||
static int categoryWin = -1;
|
static int categoryWin = -1;
|
||||||
|
|
||||||
@ -44,6 +48,14 @@ unsigned char* tool;
|
|||||||
// 0x6EC4AC
|
// 0x6EC4AC
|
||||||
int tool_win;
|
int tool_win;
|
||||||
|
|
||||||
|
// 0x4875F8
|
||||||
|
void bookmarkUnHide()
|
||||||
|
{
|
||||||
|
if (bookmarkWin != -1) {
|
||||||
|
windowShow(bookmarkWin);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// 0x4875B4
|
// 0x4875B4
|
||||||
int categoryInit()
|
int categoryInit()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user