beetle-psx-libretro/mednafen/error.cpp
2021-04-05 18:07:13 +02:00

45 lines
1.3 KiB
C++

/* Mednafen - Multi-system Emulator
*
* This program 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 Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "mednafen.h"
#include "error.h"
#include <errno.h>
#include <string.h>
#include <stdarg.h>
#include <libretro.h>
extern retro_log_printf_t log_cb;
MDFN_Error::MDFN_Error(int errno_code_new, const char *format, ...)
{
va_list ap;
va_start(ap, format);
error_message = (char*)malloc(4096 * sizeof(char));
vsnprintf(error_message, 4096, format, ap);
va_end(ap);
log_cb(RETRO_LOG_ERROR, "%s\n", error_message);
}
MDFN_Error::~MDFN_Error()
{
if(error_message)
free(error_message);
error_message = NULL;
}