Add clear_toolname
This commit is contained in:
parent
480094a3eb
commit
9faa427a28
|
@ -12,6 +12,7 @@
|
||||||
namespace fallout {
|
namespace fallout {
|
||||||
|
|
||||||
static void redraw_toolname();
|
static void redraw_toolname();
|
||||||
|
static void clear_toolname();
|
||||||
static int mapper_mark_exit_grid();
|
static int mapper_mark_exit_grid();
|
||||||
static void mapper_mark_all_exit_grids();
|
static void mapper_mark_all_exit_grids();
|
||||||
|
|
||||||
|
@ -33,6 +34,15 @@ void redraw_toolname()
|
||||||
windowRefreshRect(tool_win, &rect);
|
windowRefreshRect(tool_win, &rect);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 0x48B278
|
||||||
|
void clear_toolname()
|
||||||
|
{
|
||||||
|
windowDrawText(tool_win, "", 120, _scr_size.right - _scr_size.left - 149, 60, 260);
|
||||||
|
windowDrawText(tool_win, "", 120, _scr_size.right - _scr_size.left - 149, 70, 260);
|
||||||
|
windowDrawText(tool_win, "", 120, _scr_size.right - _scr_size.left - 149, 80, 260);
|
||||||
|
redraw_toolname();
|
||||||
|
}
|
||||||
|
|
||||||
// 0x48C604
|
// 0x48C604
|
||||||
int mapper_inven_unwield(Object* obj, int right_hand)
|
int mapper_inven_unwield(Object* obj, int right_hand)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue