aboutsummaryrefslogtreecommitdiff
path: root/engines/mutationofjb/widgets/inventorywidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mutationofjb/widgets/inventorywidget.h')
-rw-r--r--engines/mutationofjb/widgets/inventorywidget.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/mutationofjb/widgets/inventorywidget.h b/engines/mutationofjb/widgets/inventorywidget.h
index f0bc4baeee..8d6205e1ef 100644
--- a/engines/mutationofjb/widgets/inventorywidget.h
+++ b/engines/mutationofjb/widgets/inventorywidget.h
@@ -34,13 +34,13 @@ namespace MutationOfJB {
class InventoryWidget : public Widget {
public:
- InventoryWidget(Gui &gui, Gui::InventoryMap &inventoryMap, const Common::Array<Graphics::Surface>& inventorySurfaces);
+ InventoryWidget(Gui &gui, Gui::InventoryMap &inventoryMap, const Common::Array<Graphics::Surface> &inventorySurfaces);
virtual void _draw(Graphics::ManagedSurface &) override;
private:
void drawInventoryItem(Graphics::ManagedSurface &surface, const Common::String &item, int pos);
Gui::InventoryMap &_inventoryMap;
- const Common::Array<Graphics::Surface>& _surfaces;
+ const Common::Array<Graphics::Surface> &_surfaces;
};
}