Skip to content

Commit d488d14

Browse files
committed
Minor changes in logging
1 parent 96f5548 commit d488d14

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

UmodelTool/Main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1194,7 +1194,7 @@ int main(int argc, const char **argv)
11941194
// find any object to display
11951195
if (!GApplication.FindObjectAndCreateVisualizer(1, GApplication.GuiShown, true)) //!! don't need to pass GuiShown there
11961196
{
1197-
appPrintf("\nThe specified package(s) has no objects to diaplay.\n\n");
1197+
appPrintf("\nThe specified package(s) has no objects to display.\n\n");
11981198
goto no_objects;
11991199
}
12001200

Unreal/UnMesh4.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2304,7 +2304,7 @@ void UStaticMesh4::Serialize(FArchive &Ar)
23042304

23052305
//!! TODO: support sockets
23062306
Ar << Sockets;
2307-
if (Sockets.Num()) appNotify("StaticMesh has %d sockets", Sockets.Num());
2307+
if (Sockets.Num()) appPrintf("StaticMesh has %d sockets\n", Sockets.Num());
23082308

23092309
// editor models
23102310
if (!StripFlags.IsEditorDataStripped())

0 commit comments

Comments
 (0)