mirror of https://github.com/OpenTTD/OpenTTD
(svn r6642) -Fix r6639: 2 conversions missed
parent
24a34eec9b
commit
384a8be1cc
4
window.h
4
window.h
|
@ -717,7 +717,7 @@ static inline void ToggleWidgetLoweredState(Window *w, byte widget_index)
|
||||||
*/
|
*/
|
||||||
static inline void LowerWindowWidget(Window *w, byte widget_index)
|
static inline void LowerWindowWidget(Window *w, byte widget_index)
|
||||||
{
|
{
|
||||||
SetWidgetLoweredState(w, widget_index, true);
|
SetWindowWidgetLoweredState(w, widget_index, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -727,7 +727,7 @@ static inline void LowerWindowWidget(Window *w, byte widget_index)
|
||||||
*/
|
*/
|
||||||
static inline void RaiseWindowWidget(Window *w, byte widget_index)
|
static inline void RaiseWindowWidget(Window *w, byte widget_index)
|
||||||
{
|
{
|
||||||
SetWidgetLoweredState(w, widget_index, false);
|
SetWindowWidgetLoweredState(w, widget_index, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue