diff Chest.cpp @ 1202:0dbf6c4dd029

arrays to std::arrays phase 1
author Grumpy7
date Sat, 08 Jun 2013 21:33:22 +0200
parents 29a8defbad9e
children 8c02e6f74b29
line wrap: on
line diff
--- a/Chest.cpp	Sat Jun 08 19:34:33 2013 +0200
+++ b/Chest.cpp	Sat Jun 08 21:33:22 2013 +0200
@@ -31,7 +31,7 @@
 
 size_t uNumChests; // idb
 struct ChestList *pChestList;
-Chest pChests[20];
+std::array<Chest, 20> pChests;
 
 
 const int pChestPixelOffsetX[8]  = {42, 18, 18, 42, 42, 42, 18, 42};