summaryrefslogtreecommitdiff
path: root/src/sdlError.cpp
blob: 6d06b0ac2a768d5e6861613d355bbdfc778b4e51 (plain)
1
2
3
4
5
6
7
8
9
#include "FLD.hpp"
#include <SDL2/SDL_log.h>

FLD::Error
FLD::sdlError(const std::string& msg) const
{
	SDL_Log("SDL runtime error (%s): %s", msg.c_str(), SDL_GetError());
	return -1;
}