mirror of
https://github.com/zeldaret/botw
synced 2026-05-26 07:38:50 -04:00
10 lines
267 B
C++
10 lines
267 B
C++
#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
|