summaryrefslogtreecommitdiff
path: root/src/video_core/utils.h
diff options
context:
space:
mode:
authorGravatar archshift2014-09-06 20:04:13 -0700
committerGravatar archshift2014-09-07 12:09:02 -0700
commit0167e9140e2a732c2267bdc4672ecd0360d49227 (patch)
tree0016a1230b4ee9299eb6ae2180b2ef513e7406c5 /src/video_core/utils.h
parentMerge pull request #93 from lioncash/ref (diff)
downloadyuzu-0167e9140e2a732c2267bdc4672ecd0360d49227.tar.gz
yuzu-0167e9140e2a732c2267bdc4672ecd0360d49227.tar.xz
yuzu-0167e9140e2a732c2267bdc4672ecd0360d49227.zip
utils: cleaned up DumpTGA, removing redundancies
Diffstat (limited to 'src/video_core/utils.h')
-rw-r--r--src/video_core/utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/utils.h b/src/video_core/utils.h
index 20d4ec9e0..9cb3d4d43 100644
--- a/src/video_core/utils.h
+++ b/src/video_core/utils.h
@@ -59,6 +59,6 @@ struct TGAHeader {
59 * @param raw_data Raw RGBA8 texture data to dump 59 * @param raw_data Raw RGBA8 texture data to dump
60 * @todo This should be moved to some general purpose/common code 60 * @todo This should be moved to some general purpose/common code
61 */ 61 */
62void DumpTGA(std::string filename, int width, int height, u8* raw_data); 62void DumpTGA(std::string filename, short width, short height, u8* raw_data);
63 63
64} // namespace 64} // namespace