mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-04 16:15:35 +00:00
Silence the compiler.
This commit is contained in:
parent
b037780a7d
commit
869bc4d084
1 changed files with 2 additions and 2 deletions
|
@ -128,8 +128,8 @@ void WindowManager::updateVisible()
|
||||||
int eff = shown & allowed;
|
int eff = shown & allowed;
|
||||||
|
|
||||||
// Show the windows we want
|
// Show the windows we want
|
||||||
map -> setVisible( eff & GW_Map );
|
map -> setVisible( (eff & GW_Map) != 0 );
|
||||||
stats -> setVisible( eff & GW_Stats );
|
stats -> setVisible( (eff & GW_Stats) != 0 );
|
||||||
#if 0
|
#if 0
|
||||||
// inventory -> setVisible( eff & GW_Inventory );
|
// inventory -> setVisible( eff & GW_Inventory );
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue