mirror of https://github.com/AxioDL/nod.git
removed unneeded newlines
This commit is contained in:
parent
a656c5d4c9
commit
f093f633b4
2
LogVisor
2
LogVisor
|
@ -1 +1 @@
|
|||
Subproject commit 33f2f7b279991a7be81310024636f43ecbf5ed24
|
||||
Subproject commit 47a7a95098fe13543450c132cae91a195c06840c
|
|
@ -36,9 +36,9 @@ public:
|
|||
if (!fp)
|
||||
{
|
||||
#if NOD_UCS2
|
||||
LogModule.report(LogVisor::Error, L"Unable to open '%s' for reading\n", filepath.c_str());
|
||||
LogModule.report(LogVisor::Error, L"Unable to open '%s' for reading", filepath.c_str());
|
||||
#else
|
||||
LogModule.report(LogVisor::Error, "Unable to open '%s' for reading\n", filepath.c_str());
|
||||
LogModule.report(LogVisor::Error, "Unable to open '%s' for reading", filepath.c_str());
|
||||
#endif
|
||||
return std::unique_ptr<IReadStream>();
|
||||
}
|
||||
|
@ -67,9 +67,9 @@ public:
|
|||
if (!fp)
|
||||
{
|
||||
#if NOD_UCS2
|
||||
LogModule.report(LogVisor::Error, L"Unable to open '%s' for writing\n", filepath.c_str());
|
||||
LogModule.report(LogVisor::Error, L"Unable to open '%s' for writing", filepath.c_str());
|
||||
#else
|
||||
LogModule.report(LogVisor::Error, "Unable to open '%s' for writing\n", filepath.c_str());
|
||||
LogModule.report(LogVisor::Error, "Unable to open '%s' for writing", filepath.c_str());
|
||||
#endif
|
||||
return std::unique_ptr<IWriteStream>();
|
||||
}
|
||||
|
|
|
@ -36,9 +36,9 @@ public:
|
|||
if (!fp)
|
||||
{
|
||||
#if NOD_UCS2
|
||||
LogModule.report(LogVisor::Error, L"Unable to open '%s' for reading\n", filepath.c_str());
|
||||
LogModule.report(LogVisor::Error, L"Unable to open '%s' for reading", filepath.c_str());
|
||||
#else
|
||||
LogModule.report(LogVisor::Error, "Unable to open '%s' for reading\n", filepath.c_str());
|
||||
LogModule.report(LogVisor::Error, "Unable to open '%s' for reading", filepath.c_str());
|
||||
#endif
|
||||
return std::unique_ptr<IReadStream>();
|
||||
}
|
||||
|
@ -67,9 +67,9 @@ public:
|
|||
if (!fp)
|
||||
{
|
||||
#if NOD_UCS2
|
||||
LogModule.report(LogVisor::Error, L"Unable to open '%s' for writing\n", filepath.c_str());
|
||||
LogModule.report(LogVisor::Error, L"Unable to open '%s' for writing", filepath.c_str());
|
||||
#else
|
||||
LogModule.report(LogVisor::Error, "Unable to open '%s' for writing\n", filepath.c_str());
|
||||
LogModule.report(LogVisor::Error, "Unable to open '%s' for writing", filepath.c_str());
|
||||
#endif
|
||||
return std::unique_ptr<IWriteStream>();
|
||||
}
|
||||
|
|
|
@ -21,9 +21,9 @@ std::unique_ptr<DiscBase> OpenDiscFromImage(const SystemChar* path, bool& isWii)
|
|||
if (!fp)
|
||||
{
|
||||
#if NOD_UCS2
|
||||
LogModule.report(LogVisor::Error, L"Unable to open '%s'\n", path);
|
||||
LogModule.report(LogVisor::Error, L"Unable to open '%s'", path);
|
||||
#else
|
||||
LogModule.report(LogVisor::Error, "Unable to open '%s'\n", path);
|
||||
LogModule.report(LogVisor::Error, "Unable to open '%s'", path);
|
||||
#endif
|
||||
return std::unique_ptr<DiscBase>();
|
||||
}
|
||||
|
@ -66,9 +66,9 @@ std::unique_ptr<DiscBase> OpenDiscFromImage(const SystemChar* path, bool& isWii)
|
|||
if (!discIO)
|
||||
{
|
||||
#if NOD_UCS2
|
||||
LogModule.report(LogVisor::Error, L"'%s' is not a valid image\n", path);
|
||||
LogModule.report(LogVisor::Error, L"'%s' is not a valid image", path);
|
||||
#else
|
||||
LogModule.report(LogVisor::Error, "'%s' is not a valid image\n", path);
|
||||
LogModule.report(LogVisor::Error, "'%s' is not a valid image", path);
|
||||
#endif
|
||||
return std::unique_ptr<DiscBase>();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue