| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | namespace ksys { |
| 4 | |
| 5 | // Must be a compile-time constant because this value is used as an array size in various places. |
| 6 | // This limitation is why we cannot just use sead::CoreInfo::getNumCores() everywhere. |
| 7 | constexpr int NumCores = 3; |
| 8 | |
| 9 | } // namespace ksys |
| 10 |