mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2025-01-08 05:55:35 +00:00
Small formatting change
This commit is contained in:
parent
ed2bcc3838
commit
640b098af7
|
@ -44,8 +44,9 @@
|
||||||
#include "ImageLoaderPNG.h"
|
#include "ImageLoaderPNG.h"
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cstdio>
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
#include <cstdio>
|
||||||
|
#include <cstring>
|
||||||
|
|
||||||
#include <png.h>
|
#include <png.h>
|
||||||
|
|
||||||
|
@ -79,9 +80,6 @@ ImageLoaderPNG::ImageLoaderPNG(const unsigned char *rawData)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
ImageLoaderPNG::~ImageLoaderPNG() {
|
|
||||||
}
|
|
||||||
|
|
||||||
bool ImageLoaderPNG::ReadData() {
|
bool ImageLoaderPNG::ReadData() {
|
||||||
|
|
||||||
const int kNumSigBytesToRead = 8;
|
const int kNumSigBytesToRead = 8;
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
class ImageLoaderPNG : public ImageLoader {
|
class ImageLoaderPNG : public ImageLoader {
|
||||||
public:
|
public:
|
||||||
ImageLoaderPNG(const unsigned char *rawData);
|
ImageLoaderPNG(const unsigned char *rawData);
|
||||||
virtual ~ImageLoaderPNG();
|
virtual ~ImageLoaderPNG() { }
|
||||||
|
|
||||||
virtual bool ReadData();
|
virtual bool ReadData();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue