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