1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-02 19:54:35 +00:00

Shuffled C stuff out on top.

This commit is contained in:
Thomas Harte 2016-09-08 21:08:03 -04:00
parent 24251a2768
commit 1de6097f06

View File

@ -12,7 +12,7 @@
#include <cstdlib> #include <cstdlib>
#include <cmath> #include <cmath>
using namespace Storage::Tape; #pragma mark - ZLib extensions
static float gzgetfloat(gzFile file) static float gzgetfloat(gzFile file)
{ {
@ -66,6 +66,8 @@ static int gzget32(gzFile file)
return result; return result;
} }
using namespace Storage::Tape;
UEF::UEF(const char *file_name) : UEF::UEF(const char *file_name) :
_time_base(1200), _time_base(1200),
_is_at_end(false), _is_at_end(false),