mirror of
https://github.com/GearsProgress/Poke_Transporter_GB.git
synced 2026-03-22 01:44:36 -05:00
20 lines
443 B
C++
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",
|
|
};
|