2019-05-21 18:02:25 -05:00
|
|
|
|
/* RetroArch - A frontend for libretro.
|
2017-01-22 13:40:32 +01:00
|
|
|
|
* Copyright (C) 2011-2017 - Daniel De Matteis
|
2018-01-01 22:28:40 -03:00
|
|
|
|
* Copyright (C) 2018 - Alfredo Monclus
|
2020-06-19 11:24:08 +02:00
|
|
|
|
* Copyright (C) 2019-2020 - Víctor González Fraile
|
2015-07-01 01:42:04 +02:00
|
|
|
|
*
|
|
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
2019-11-02 00:00:27 +01:00
|
|
|
|
*
|
|
|
|
|
* CHARACTER/LINES HARD LIMIT (MEASURED BY THE LOWEST COMMON DENOMINATOR, THE RGUI INTERFACE):
|
|
|
|
|
* 48 CHARACTERS PER LINE
|
|
|
|
|
* 20 LINES PER SCREEN
|
|
|
|
|
*
|
|
|
|
|
* LÍMITES FIJOS DE CARACTERES/LÍNEAS (MEDIDOS SEGÚN EL DENOMINADOR COMÚN MÁS BAJO, LA INTERFAZ RGUI):
|
|
|
|
|
* 48 CARACTERES POR LÍNEA
|
|
|
|
|
* 20 LÍNEAS POR PANTALLA
|
2015-07-01 01:42:04 +02:00
|
|
|
|
*/
|
2017-04-29 13:20:50 +02:00
|
|
|
|
|
2016-06-20 00:31:13 +02:00
|
|
|
|
#include <stdint.h>
|
2019-10-31 13:59:36 +01:00
|
|
|
|
#include <stddef.h>
|
2016-06-20 00:31:13 +02:00
|
|
|
|
|
|
|
|
|
#include <compat/strl.h>
|
2016-07-25 09:31:03 +02:00
|
|
|
|
#include <string/stdstring.h>
|
2015-07-01 01:42:04 +02:00
|
|
|
|
|
|
|
|
|
#include "../msg_hash.h"
|
|
|
|
|
|
2019-05-21 18:02:25 -05:00
|
|
|
|
#if defined(_MSC_VER) && !defined(_XBOX) && (_MSC_VER >= 1500 && _MSC_VER < 1900)
|
2019-05-28 13:37:14 +02:00
|
|
|
|
#if (_MSC_VER >= 1700)
|
2019-05-21 18:02:25 -05:00
|
|
|
|
/* https://support.microsoft.com/en-us/kb/980263 */
|
|
|
|
|
#pragma execution_character_set("utf-8")
|
2019-05-28 13:37:14 +02:00
|
|
|
|
#endif
|
2019-05-21 18:02:25 -05:00
|
|
|
|
#pragma warning(disable:4566)
|
|
|
|
|
#endif
|
|
|
|
|
|
2023-01-19 11:32:10 +01:00
|
|
|
|
const char *msg_hash_to_str_es(enum msg_hash_enums msg)
|
2015-07-01 01:42:04 +02:00
|
|
|
|
{
|
2016-06-14 15:04:49 +02:00
|
|
|
|
switch (msg)
|
2015-07-01 01:42:04 +02:00
|
|
|
|
{
|
2023-01-19 11:32:10 +01:00
|
|
|
|
#include "msg_hash_es.h"
|
2015-07-01 01:42:04 +02:00
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return "null";
|
|
|
|
|
}
|