From 1de6097f06f1f2fafa9e4193fb89429c350c5b08 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 8 Sep 2016 21:08:03 -0400 Subject: [PATCH] Shuffled C stuff out on top. --- Storage/Tape/Formats/TapeUEF.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Storage/Tape/Formats/TapeUEF.cpp b/Storage/Tape/Formats/TapeUEF.cpp index 548800b96..9ecf4e1ab 100644 --- a/Storage/Tape/Formats/TapeUEF.cpp +++ b/Storage/Tape/Formats/TapeUEF.cpp @@ -12,7 +12,7 @@ #include #include -using namespace Storage::Tape; +#pragma mark - ZLib extensions static float gzgetfloat(gzFile file) { @@ -66,6 +66,8 @@ static int gzget32(gzFile file) return result; } +using namespace Storage::Tape; + UEF::UEF(const char *file_name) : _time_base(1200), _is_at_end(false),