/*---------------------------------------------------------------------------* Project: NintendoWare File: math_Config.h Copyright (C)2009-2010 Nintendo Co., Ltd./HAL Laboratory, Inc. All rights reserved. These coded instructions, statements, and computer programs contain proprietary information of Nintendo of America Inc. and/or Nintendo Company Ltd., and are protected by Federal copyright law. They may not be disclosed to third parties or copied or duplicated in any form, in whole or in part, without the prior written consent of Nintendo. $Revision: 17998 $ *---------------------------------------------------------------------------*/ #ifndef NW_MATH_CONFIG_H_ #define NW_MATH_CONFIG_H_ #include #include #ifdef WIN32 // DolphinSDKのMTXライブラリをPCでビルドしたものを利用している #define NW_MATH_GENERIC #endif #define NW_MATH_WARNING NW_WARNING #define NW_MATH_REPORT nwosPrintf #define NW_MATH_AS_INLINE #if defined(NW_MATH_AS_INLINE) #define NW_MATH_INLINE inline #else #define NW_MATH_INLINE #endif #if defined( NW_PLATFORM_CTR ) && ! defined( NW_DEBUG ) #if ! defined( NW_MATH_UNUSE_ASM ) && ! defined( NW_MATH_USE_ASM ) #define NW_MATH_USE_ASM #endif #endif /* NW_MATH_CONFIG_H_ */ #endif