Poke_Transporter_GB/source/err_def.cpp
2023-05-03 21:37:50 -05:00

20 lines
443 B
C++

//Created by Laqieer https://github.com/laqieer/libsavgba
const char * const SavErrCodes[] = {
"E_SUCCESS",
"E_INVALID_PARAM",
"E_OUT_OF_RANGE",
"E_VERIFY_FAIL",
"E_UNSUPPORTED_DEVICE",
"E_TIMEOUT",
};
const char * const SavErrMsgs[] = {
"No error",
"Invalid input parameter",
"Address is out of range",
"Failed to verify written data",
"Device type is not supported",
"Operation timeout",
};