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