Skip to content

Commit

Permalink
Fix xrGame compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
Xottab-DUTY committed May 28, 2018
1 parent d757f8a commit 5187620
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/xrGame/traffic_optimization.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#ifndef TRAFFIC_OPTIMIZATION_INCLUDED
#define TRAFFIC_OPTIMIZATION_INCLUDED
#pragma once

#include "xrCore/compression_ppmd_stream.h"
#include "xrCore/lzo_compressor.h"
#include "xrCore/Compression/lzo_compressor.h"

namespace compression
{
Expand All @@ -11,7 +10,7 @@ namespace ppmd
class stream;
}; // namespace ppmd

typedef compression::ppmd::stream ppmd_trained_stream;
using ppmd_trained_stream = ppmd::stream;
void init_ppmd_trained_stream(ppmd_trained_stream*& dest);
void deinit_ppmd_trained_stream(ppmd_trained_stream*& src);

Expand All @@ -35,5 +34,3 @@ enum enum_traffic_optimization
}; // enum enum_traffic_optimization

extern u32 g_sv_traffic_optimization_level;

#endif //#ifndef TRAFFIC_OPTIMIZATION_INCLUDED

0 comments on commit 5187620

Please sign in to comment.