mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-05 14:31:17 +12:00
Adding a lot of constexpr
This commit is contained in:
parent
57ff99ce53
commit
95a7ecabd8
66 changed files with 297 additions and 297 deletions
|
@ -331,10 +331,10 @@ namespace iosu
|
|||
};
|
||||
static_assert(sizeof(SelfPlayingGame) == 0x10);
|
||||
|
||||
static const auto FPResult_Ok = 0;
|
||||
static const auto FPResult_InvalidIPCParam = BUILD_NN_RESULT(NN_RESULT_LEVEL_LVL6, NN_RESULT_MODULE_NN_FP, 0x680);
|
||||
static const auto FPResult_RequestFailed = BUILD_NN_RESULT(NN_RESULT_LEVEL_FATAL, NN_RESULT_MODULE_NN_FP, 0); // figure out proper error code
|
||||
static const auto FPResult_Aborted = BUILD_NN_RESULT(NN_RESULT_LEVEL_STATUS, NN_RESULT_MODULE_NN_FP, 0x3480);
|
||||
static constexpr auto FPResult_Ok = 0;
|
||||
static constexpr auto FPResult_InvalidIPCParam = BUILD_NN_RESULT(NN_RESULT_LEVEL_LVL6, NN_RESULT_MODULE_NN_FP, 0x680);
|
||||
static constexpr auto FPResult_RequestFailed = BUILD_NN_RESULT(NN_RESULT_LEVEL_FATAL, NN_RESULT_MODULE_NN_FP, 0); // figure out proper error code
|
||||
static constexpr auto FPResult_Aborted = BUILD_NN_RESULT(NN_RESULT_LEVEL_STATUS, NN_RESULT_MODULE_NN_FP, 0x3480);
|
||||
|
||||
class FPDService : public iosu::nn::IPCSimpleService
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue