diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2012-12-16 17:47:51 -0800 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2012-12-24 10:02:00 -0800 |
commit | b52127bcbf817ff8285b36d22198b275327e16bb (patch) | |
tree | 7bc596289c011e719168bef846b8cf63bf5d4947 /src/common/grfio.hpp | |
parent | 4bd7eeec09629d3c0f900d42c899fe23c69e07b6 (diff) | |
download | tmwa-b52127bcbf817ff8285b36d22198b275327e16bb.tar.gz tmwa-b52127bcbf817ff8285b36d22198b275327e16bb.tar.bz2 tmwa-b52127bcbf817ff8285b36d22198b275327e16bb.tar.xz tmwa-b52127bcbf817ff8285b36d22198b275327e16bb.zip |
Cleanup headers and remove all uses of va_list except logging
Diffstat (limited to 'src/common/grfio.hpp')
-rw-r--r-- | src/common/grfio.hpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/common/grfio.hpp b/src/common/grfio.hpp index f418ac3..58afb07 100644 --- a/src/common/grfio.hpp +++ b/src/common/grfio.hpp @@ -1,9 +1,12 @@ +#ifndef GRFIO_HPP +#define GRFIO_HPP + +# include "sanity.hpp" + /// Accessor to the .gat map virtual files // Note .gat files are mapped to .wlk files by data/resnametable.txt // Note that there currently is a 1-1 correlation between them, // but it is possible for a single .wlk to have multiple .gats reference it -#ifndef GRFIO_HPP -#define GRFIO_HPP /// Load file into memory # define grfio_read(resourcename) grfio_reads(resourcename, NULL) |