From f408d9a22775032dfc315879539d0a4a843594be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Thu, 3 Apr 2008 10:23:03 +0000 Subject: [PATCH] * Renamed placement constants to fit into the existing scheme. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24767 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/tools/generate_boot_screen.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tools/generate_boot_screen.cpp b/src/tools/generate_boot_screen.cpp index 618392c837..fda18fdf50 100644 --- a/src/tools/generate_boot_screen.cpp +++ b/src/tools/generate_boot_screen.cpp @@ -201,13 +201,13 @@ main(int argc, char* argv[]) fputs("// This file was generated by the generate_boot_screen Haiku build " "tool.\n\n", sOutput); - fprintf(sOutput, "static const int32 kLogoPlacementX = %d;\n", + fprintf(sOutput, "static const int32 kSplashLogoPlacementX = %d;\n", logoPlacementX); - fprintf(sOutput, "static const int32 kLogoPlacementY = %d;\n", + fprintf(sOutput, "static const int32 kSplashLogoPlacementY = %d;\n", logoPlacementY); - fprintf(sOutput, "static const int32 kIconPlacementX = %d;\n", + fprintf(sOutput, "static const int32 kSplashIconsPlacementX = %d;\n", iconPlacementX); - fprintf(sOutput, "static const int32 kIconPlacementY = %d;\n\n", + fprintf(sOutput, "static const int32 kSplashIconsPlacementY = %d;\n\n", iconPlacementY); parseImage(argv[1], "kSplashLogo");