* Removed the Copyright image/rendering.

* Fixed the icons image, it was upside down.
* Support the new 24 bit boot screen images in the boot_loader and the kernel.
* Prepare the code for future indexed versions of the boot screen images.
  But the generate_boot_screen tool currently does not generate those.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24449 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus
2008-03-18 20:27:47 +00:00
parent d37b47817b
commit 55ef60a5ae
8 changed files with 21570 additions and 8028 deletions
+3 -4
View File
@@ -164,14 +164,14 @@ parseImage(const char* filename, const char* baseName)
int
main(int argc, char* argv[])
{
if (argc < 5) {
if (argc < 4) {
printf("Usage:\n");
printf("\t%s <splash.png> <icons.png> <copyright.png> <images.h>\n",
printf("\t%s <splash.png> <icons.png> <images.h>\n",
argv[0]);
return 0;
}
const char* headerFileName = argv[4];
const char* headerFileName = argv[3];
sOutput = fopen(headerFileName, "wb");
if (!sOutput)
@@ -182,7 +182,6 @@ main(int argc, char* argv[])
parseImage(argv[1], "kSplashLogo");
parseImage(argv[2], "kSplashIcons");
parseImage(argv[3], "kSplashCopyright");
fclose(sOutput);
return 0;