Skip to content

Commit 0aea5be

Browse files
committed
Fixing copyright
1 parent 97b8233 commit 0aea5be

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

crnlib/crn_core.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace crnlib
1010
{
11-
const char *g_copyright_str = "Copyright (c) 2010-2016 Binomial LLC";
11+
const char *g_copyright_str = "Copyright (c) 2010-2016 Richard Geldreich, Jr. and Binomial LLC";
1212
const char *g_sig_str = "C8cfRlaorj0wLtnMSxrBJxTC85rho2L9hUZKHcBL";
1313

1414
} // namespace crnlib

crunch/crunch.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1254,7 +1254,7 @@ static bool check_for_option(int argc, char *argv[], const char *pOption)
12541254
static void print_title()
12551255
{
12561256
console::printf("crunch: Advanced DXTn Texture Compressor - https://github.com/BinomialLLC/crunch");
1257-
console::printf("Copyright (c) 2010-2016 Binomial LLC");
1257+
console::printf("Copyright (c) 2010-2016 Richard Geldreich, Jr. and Binomial LLC");
12581258
console::printf("crnlib version v%u.%02u %s Built %s, %s", CRNLIB_VERSION / 100U, CRNLIB_VERSION % 100U, crnlib_is_x64() ? "x64" : "x86", __DATE__, __TIME__);
12591259
console::printf("");
12601260
}

example1/example1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const int cDefaultCRNQualityLevel = 128;
3333
static int print_usage()
3434
{
3535
printf("Description: Simple crnlib API example program.\n");
36-
printf("Copyright (c) 2010-2016 Binomial LLC\n");
36+
printf("Copyright (c) 2010-2016 Richard Geldreich, Jr. and Binomial LLC\n");
3737
printf("Usage: example1 [mode: i/c/d] [source_file] [options]\n");
3838
printf("\nModes:\n");
3939
printf("c: Compress to .DDS or .CRN using the crn_compress() func. in crnlib.h\n");

example2/example2.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ using namespace crnlib;
2424
static int print_usage()
2525
{
2626
printf("Description: Transcodes .CRN to .DDS files using crn_decomp.h.\n");
27-
printf("Copyright (c) 2010-2016 Binomial LLC\n");
27+
printf("Copyright (c) 2010-2016 Richard Geldreich, Jr. and Binomial LLC\n");
2828
printf("Usage: example2 [source_file] [options]\n");
2929
printf("\nOptions:\n");
3030
printf("-out filename - Force output filename.\n");

inc/crn_decomp.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// File: crn_decomp.h - Fast CRN->DXTc texture transcoder header file library
2-
// Copyright (c) 2010-2016 Binomial LLC
2+
// Copyright (c) 2010-2016 Richard Geldreich, Jr. and Binomial LLC
33
// See Copyright Notice and license at the end of this file.
44
//
55
// This single header file contains *all* of the code necessary to unpack .CRN files to raw DXTn bits.
@@ -4812,7 +4812,7 @@ namespace crnd
48124812
// crn_decomp.h uses the ZLIB license:
48134813
// http://opensource.org/licenses/Zlib
48144814
//
4815-
// Copyright (c) 2010-2016 Binomial LLC
4815+
// Copyright (c) 2010-2016 Richard Geldreich, Jr. and Binomial LLC
48164816
//
48174817
// This software is provided 'as-is', without any express or implied
48184818
// warranty. In no event will the authors be held liable for any damages

inc/crnlib.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// File: crnlib.h - Advanced DXTn texture compression library.
2-
// Copyright (c) 2010-2016 Binomial LLC
2+
// Copyright (c) 2010-2016 Richard Geldreich, Jr. and Binomial LLC
33
// See copyright notice and license at the end of this file.
44
//
55
// This header file contains the public crnlib declarations for DXTn,
@@ -619,7 +619,7 @@ bool crn_decompress_block(const void *pSrc_block, crn_uint32 *pDst_pixels, crn_f
619619
// crnlib uses the ZLIB license:
620620
// http://opensource.org/licenses/Zlib
621621
//
622-
// Copyright (c) 2010-2016 Binomial LLC
622+
// Copyright (c) 2010-2016 Richard Geldreich, Jr. and Binomial LLC
623623
//
624624
// This software is provided 'as-is', without any express or implied
625625
// warranty. In no event will the authors be held liable for any damages

license.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
crunch/crnlib uses the ZLIB license:
22
http://opensource.org/licenses/Zlib
33

4-
Copyright (c) 2010-2016 Binomial LLC
4+
Copyright (c) 2010-2016 Richard Geldreich, Jr. and Binomial LLC
55

66
This software is provided 'as-is', without any express or implied
77
warranty. In no event will the authors be held liable for any damages

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
crunch/crnlib v1.04 - Advanced DXTn texture compression library
2-
Copyright (C) 2010-2016 Binomial LLC http://binomial.info
2+
Copyright (C) 2010-2016 Richard Geldreich, Jr. and Binomial LLC http://binomial.info
33

44
For bugs or support contact Binomial <[email protected]>.
55

0 commit comments

Comments
 (0)