Branimir Karadžić 8 년 전
부모
커밋
9d9464f756
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 0
      src/amalgamated.cpp
  2. 1 2
      tools/bin2c/bin2c.cpp

+ 1 - 0
src/amalgamated.cpp

@@ -18,6 +18,7 @@
 #include "os.cpp"
 #include "process.cpp"
 #include "semaphore.cpp"
+#include "settings.cpp"
 #include "sort.cpp"
 #include "string.cpp"
 #include "thread.cpp"

+ 1 - 2
tools/bin2c/bin2c.cpp

@@ -59,7 +59,7 @@ public:
 					ascii[asciiPos] = '\0';
 					bx::writePrintf(m_writer, "\t" HEX_DUMP_FORMAT "// %s\n", hex, ascii);
 					data += asciiPos;
-					hexPos = 0;
+					hexPos   = 0;
 					asciiPos = 0;
 				}
 			}
@@ -80,7 +80,6 @@ public:
 	}
 
 	bx::WriterI* m_writer;
-	std::string m_filePath;
 	std::string m_name;
 	typedef std::vector<uint8_t> Buffer;
 	Buffer m_buffer;