That array conversion worked.

I think I can safely assume most of these will work.
This commit is contained in:
Jason Felds
2013-05-05 08:42:06 -04:00
parent c7800078f2
commit 027845a8a2
+2 -1
View File
@@ -6,6 +6,7 @@
#include "Screen.h"
#include "BitmapText.h"
#include "Quad.h"
#include <array>
const int NUM_SKIPS_TO_SHOW = 5;
@@ -22,7 +23,7 @@ private:
BitmapText m_textStats;
Quad m_quadSkipBackground;
BitmapText m_textSkips[NUM_SKIPS_TO_SHOW];
std::array<BitmapText, NUM_SKIPS_TO_SHOW> m_textSkips;
RageTimer m_timerSkip;
int m_LastSkip;