1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-02 17:52:54 +03:00
gmenu2x/src/imageio.cpp

9 lines
128 B
C++
Raw Normal View History

#include "imageio.h"
#include <SDL_image.h>
SDL_Surface *loadPNG(const std::string &path)
{
return IMG_Load(path.c_str());
}