mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-08 23:25:40 +12:00
This should clean up all HLE errorcode in the codebase. I didn't removed Rust::Result as this should be a cleanup for another iteration.
8 lines
189 B
C++
8 lines
189 B
C++
#pragma once
|
|
#include "result_common.hpp"
|
|
|
|
DEFINE_HORIZON_RESULT_MODULE(Result::GSP, GSP);
|
|
|
|
namespace Result::GSP {
|
|
DEFINE_HORIZON_RESULT(SuccessRegisterIRQ, 519, Success, Success);
|
|
};
|