Files
botw/src/KingSystem/System/CoreInfo.h
T

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