diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2017-07-29 21:32:34 +0200 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2017-07-29 21:32:34 +0200 |
commit | 3e48a5af6ce9e435e558662dd54393921d07d1e6 (patch) | |
tree | 0d15c797794f9fbd840a63f8ef1231b5c9031284 /tools | |
parent | 9b73817c9015b91ecad0c5d1f4e7e57524f203d6 (diff) | |
parent | 6ed20195f090558a86984013a28f31005f9ac735 (diff) |
Merge branch 'master' into decompile_battle_3
Diffstat (limited to 'tools')
-rw-r--r-- | tools/scaninc/asm_file.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/scaninc/asm_file.cpp b/tools/scaninc/asm_file.cpp index c3d140bb1..6322749e2 100644 --- a/tools/scaninc/asm_file.cpp +++ b/tools/scaninc/asm_file.cpp @@ -137,7 +137,7 @@ std::string AsmFile::ReadPath() FATAL_INPUT_ERROR("path is too long"); } - return std::string(m_buffer, startPos, length); + return std::string(m_buffer + startPos, length); } void AsmFile::SkipEndOfLineComment() |