mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
Kill off replaceable usages of s[n]printf.
This commit is contained in:
@ -3,13 +3,14 @@
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include <list>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "png.h"
|
||||
#include "Common/FileUtil.h"
|
||||
#include "VideoCommon/ImageWrite.h"
|
||||
|
||||
bool SaveData(const char* filename, const char* data)
|
||||
bool SaveData(const std::string& filename, const char* data)
|
||||
{
|
||||
std::ofstream f;
|
||||
OpenFStream(f, filename, std::ios::binary);
|
||||
|
Reference in New Issue
Block a user