diff options
| -rw-r--r-- | OTRExporter/ExporterArchiveOTR.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/OTRExporter/ExporterArchiveOTR.cpp b/OTRExporter/ExporterArchiveOTR.cpp index f38752b..79b87a6 100644 --- a/OTRExporter/ExporterArchiveOTR.cpp +++ b/OTRExporter/ExporterArchiveOTR.cpp @@ -25,9 +25,7 @@ bool ExporterArchiveOtr::Load(bool enableWriting) { openArchiveSuccess = SFileOpenArchive(fullPath.c_str(), 0, enableWriting ? 0 : MPQ_OPEN_READ_ONLY, &mpqHandle); } if (openArchiveSuccess) { - printf("Opened mpq file "); - printf(fullPath.c_str()); - printf("\n"); + printf("Opened mpq file %s\n", fullPath.c_str()); mMpq = mpqHandle; mPath = fullPath; baseLoaded = true; |
