diff options
Diffstat (limited to '')
-rw-r--r-- | source/cInventory.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/source/cInventory.cpp b/source/cInventory.cpp index 8854ad29a..8a0c06472 100644 --- a/source/cInventory.cpp +++ b/source/cInventory.cpp @@ -48,10 +48,9 @@ cInventory::cInventory(cPlayer* a_Owner) if( !GetWindow() ) { - cWindow* Window = new cWindow( this, false ); - Window->SetSlots( m_Slots, c_NumSlots ); - Window->SetWindowID( 0 ); - OpenWindow( Window ); + cWindow* Window = new cWindow( this, false, cWindow::Inventory, 0); + Window->SetSlots(m_Slots, c_NumSlots); + OpenWindow(Window); } } |