aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/lzw.cpp
diff options
context:
space:
mode:
authorBendegúz Nagy2016-09-03 10:38:43 +0200
committerBendegúz Nagy2016-09-03 10:38:43 +0200
commitcd3b485952b71244392f594164e60b96a07fb23c (patch)
tree6f638f2934c45caf347d4ce15dc49aaae7274d64 /engines/dm/lzw.cpp
parent0d7481b2a5acb77e32bec8763fd97de8c8cd4185 (diff)
downloadscummvm-rg350-cd3b485952b71244392f594164e60b96a07fb23c.tar.gz
scummvm-rg350-cd3b485952b71244392f594164e60b96a07fb23c.tar.bz2
scummvm-rg350-cd3b485952b71244392f594164e60b96a07fb23c.zip
DM: Clean up includes
Swap <> to "" with scummvm files Add dm/ prefix to dm files Reorder includes to system files, dm files
Diffstat (limited to 'engines/dm/lzw.cpp')
-rw-r--r--engines/dm/lzw.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/dm/lzw.cpp b/engines/dm/lzw.cpp
index 63b60c5cb8..a93b0c875a 100644
--- a/engines/dm/lzw.cpp
+++ b/engines/dm/lzw.cpp
@@ -25,8 +25,9 @@
* maintainer of the Dungeon Master Encyclopaedia (http://dmweb.free.fr/)
*/
-#include "lzw.h"
-#include <common/memstream.h>
+#include "common/memstream.h"
+
+#include "dm/lzw.h"
namespace DM {