That array conversion worked.
I think I can safely assume most of these will work.
This commit is contained in:
@@ -6,6 +6,7 @@
|
|||||||
#include "Screen.h"
|
#include "Screen.h"
|
||||||
#include "BitmapText.h"
|
#include "BitmapText.h"
|
||||||
#include "Quad.h"
|
#include "Quad.h"
|
||||||
|
#include <array>
|
||||||
|
|
||||||
const int NUM_SKIPS_TO_SHOW = 5;
|
const int NUM_SKIPS_TO_SHOW = 5;
|
||||||
|
|
||||||
@@ -22,7 +23,7 @@ private:
|
|||||||
|
|
||||||
BitmapText m_textStats;
|
BitmapText m_textStats;
|
||||||
Quad m_quadSkipBackground;
|
Quad m_quadSkipBackground;
|
||||||
BitmapText m_textSkips[NUM_SKIPS_TO_SHOW];
|
std::array<BitmapText, NUM_SKIPS_TO_SHOW> m_textSkips;
|
||||||
RageTimer m_timerSkip;
|
RageTimer m_timerSkip;
|
||||||
int m_LastSkip;
|
int m_LastSkip;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user