From 7cd1d3d7ef53353290bbbc4959831518e6ebd32c Mon Sep 17 00:00:00 2001 From: Marco Benzi Date: Sun, 23 Jun 2019 18:53:32 +0200 Subject: [PATCH] Changed into unmutable --- TetraVex/TVGameViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TetraVex/TVGameViewController.swift b/TetraVex/TVGameViewController.swift index 8e4fa54..e8dba59 100644 --- a/TetraVex/TVGameViewController.swift +++ b/TetraVex/TVGameViewController.swift @@ -156,7 +156,7 @@ class TVGameViewController: NSViewController } func textStyle(for pieces:[TVPieceView],_ style: TVPieceModel.TextStyle) { - for var piece in pieces { + for piece in pieces { guard var model = piece.pieceModel else { continue }