mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 11:40:44 +00:00
Add forgotten newlines to error messages in loadpalette().
git-svn-id: https://svn.eduke32.com/eduke32@5369 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
8437d22bf2
commit
5c09daf294
1 changed files with 9 additions and 9 deletions
|
@ -8280,7 +8280,7 @@ static void loadpalette(void)
|
||||||
|
|
||||||
if (numshades <= 1)
|
if (numshades <= 1)
|
||||||
{
|
{
|
||||||
initprintf("Warning: Invalid number of shades in \"palette.dat\"!");
|
initprintf("Warning: Invalid number of shades in \"palette.dat\"!\n");
|
||||||
numshades = 0;
|
numshades = 0;
|
||||||
return kclose(fil);
|
return kclose(fil);
|
||||||
}
|
}
|
||||||
|
@ -8292,7 +8292,7 @@ static void loadpalette(void)
|
||||||
int32_t lamedukep = 0;
|
int32_t lamedukep = 0;
|
||||||
if (numshades == 256)
|
if (numshades == 256)
|
||||||
{
|
{
|
||||||
static char const * const seekfail = "Warning: klseek() failed in loadpalette()!";
|
static char const * const seekfail = "Warning: klseek() failed in loadpalette()!\n";
|
||||||
|
|
||||||
uint16_t temp;
|
uint16_t temp;
|
||||||
if (kread_and_test(fil,&temp,2))
|
if (kread_and_test(fil,&temp,2))
|
||||||
|
@ -8365,7 +8365,7 @@ static void loadpalette(void)
|
||||||
uint8_t addblendtabs;
|
uint8_t addblendtabs;
|
||||||
if (kread_and_test(fil, &addblendtabs, 1))
|
if (kread_and_test(fil, &addblendtabs, 1))
|
||||||
{
|
{
|
||||||
initprintf("Warning: failed reading additional blending table count");
|
initprintf("Warning: failed reading additional blending table count\n");
|
||||||
return kclose(fil);
|
return kclose(fil);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8375,17 +8375,17 @@ static void loadpalette(void)
|
||||||
{
|
{
|
||||||
if (kread_and_test(fil, &blendnum, 1))
|
if (kread_and_test(fil, &blendnum, 1))
|
||||||
{
|
{
|
||||||
initprintf("Warning: failed reading additional blending table index");
|
initprintf("Warning: failed reading additional blending table index\n");
|
||||||
Bfree(tab);
|
Bfree(tab);
|
||||||
return kclose(fil);
|
return kclose(fil);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (getblendtab(blendnum) != NULL)
|
if (getblendtab(blendnum) != NULL)
|
||||||
initprintf("Warning: duplicate blending table index %3d encountered", blendnum);
|
initprintf("Warning: duplicate blending table index %3d encountered\n", blendnum);
|
||||||
|
|
||||||
if (kread_and_test(fil, tab, 256*256))
|
if (kread_and_test(fil, tab, 256*256))
|
||||||
{
|
{
|
||||||
initprintf("Warning: failed reading additional blending table");
|
initprintf("Warning: failed reading additional blending table\n");
|
||||||
Bfree(tab);
|
Bfree(tab);
|
||||||
return kclose(fil);
|
return kclose(fil);
|
||||||
}
|
}
|
||||||
|
@ -8399,7 +8399,7 @@ static void loadpalette(void)
|
||||||
if (kread_and_test(fil, &lognumalphatabs, 1))
|
if (kread_and_test(fil, &lognumalphatabs, 1))
|
||||||
{
|
{
|
||||||
if (!(lognumalphatabs >= 1 && lognumalphatabs <= 7))
|
if (!(lognumalphatabs >= 1 && lognumalphatabs <= 7))
|
||||||
initprintf("invalid lognumalphatabs value, must be in [1 .. 7]");
|
initprintf("invalid lognumalphatabs value, must be in [1 .. 7]\n");
|
||||||
else
|
else
|
||||||
numalphatabs = 1<<lognumalphatabs;
|
numalphatabs = 1<<lognumalphatabs;
|
||||||
}
|
}
|
||||||
|
@ -9161,9 +9161,9 @@ int32_t E_PostInit(void)
|
||||||
if (!(paletteloaded & PALETTE_MAIN))
|
if (!(paletteloaded & PALETTE_MAIN))
|
||||||
return E_FatalError("No palette found.");
|
return E_FatalError("No palette found.");
|
||||||
if (!(paletteloaded & PALETTE_SHADE))
|
if (!(paletteloaded & PALETTE_SHADE))
|
||||||
return E_FatalError("No shade tables found.");
|
return E_FatalError("No shade table found.");
|
||||||
if (!(paletteloaded & PALETTE_TRANSLUC))
|
if (!(paletteloaded & PALETTE_TRANSLUC))
|
||||||
return E_FatalError("No tranlucency tables found.");
|
return E_FatalError("No translucency table found.");
|
||||||
|
|
||||||
E_PostLoadPalette();
|
E_PostLoadPalette();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue