mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
Refer to https URLs when applicable
This commit is contained in:
@@ -12,7 +12,7 @@
|
|||||||
- stag019 <stag019@gmail.com>
|
- stag019 <stag019@gmail.com>
|
||||||
- Antonio Niño Díaz <antonio_nd@outlook.com>
|
- Antonio Niño Díaz <antonio_nd@outlook.com>
|
||||||
- Eldred "ISSOtm" Habert <me@eldred.fr>
|
- Eldred "ISSOtm" Habert <me@eldred.fr>
|
||||||
- Sylvie "Rangi" Oukaour <http://github.com/Rangi42>
|
- Sylvie "Rangi" Oukaour <https://github.com/Rangi42>
|
||||||
|
|
||||||
## Other contributors
|
## Other contributors
|
||||||
|
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
- David Brotz <dbrotz007@gmail.com>
|
- David Brotz <dbrotz007@gmail.com>
|
||||||
- James "JL2210" Larrowe <https://github.com/JL2210>
|
- James "JL2210" Larrowe <https://github.com/JL2210>
|
||||||
- Maja Kądziołka <github@compilercrim.es>
|
- Maja Kądziołka <github@compilercrim.es>
|
||||||
- The Musl C library <http://www.musl-libc.org>
|
- The Musl C library <https://musl.libc.org/>
|
||||||
- obskyr <powpowd@gmail.com>
|
- obskyr <powpowd@gmail.com>
|
||||||
- The OpenBSD Project <http://www.openbsd.org>
|
- The OpenBSD Project <http://www.openbsd.org>
|
||||||
- Quint Guvernator <quint@guvernator.net>
|
- Quint Guvernator <quint@guvernator.net>
|
||||||
|
|||||||
@@ -136,7 +136,7 @@ The RGBDS source code file structure is as follows:
|
|||||||
## 4. Acknowledgements
|
## 4. Acknowledgements
|
||||||
|
|
||||||
RGBGFX generates palettes using algorithms found in the paper
|
RGBGFX generates palettes using algorithms found in the paper
|
||||||
["Algorithms for the Pagination Problem, a Bin Packing with Overlapping Items"](http://arxiv.org/abs/1605.00558)
|
["Algorithms for the Pagination Problem, a Bin Packing with Overlapping Items"](https://arxiv.org/abs/1605.00558)
|
||||||
([GitHub](https://github.com/pagination-problem/pagination), MIT license),
|
([GitHub](https://github.com/pagination-problem/pagination), MIT license),
|
||||||
by Aristide Grange, Imed Kacem, and Sébastien Martin.
|
by Aristide Grange, Imed Kacem, and Sébastien Martin.
|
||||||
|
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ using std::swap;
|
|||||||
|
|
||||||
namespace packing {
|
namespace packing {
|
||||||
|
|
||||||
// The solvers here are picked from the paper at http://arxiv.org/abs/1605.00558:
|
// The solvers here are picked from the paper at https://arxiv.org/abs/1605.00558:
|
||||||
// "Algorithms for the Pagination Problem, a Bin Packing with Overlapping Items"
|
// "Algorithms for the Pagination Problem, a Bin Packing with Overlapping Items"
|
||||||
// Their formulation of the problem consists in packing "tiles" into "pages"; here is a
|
// Their formulation of the problem consists in packing "tiles" into "pages"; here is a
|
||||||
// correspondence table for our application of it:
|
// correspondence table for our application of it:
|
||||||
|
|||||||
@@ -463,7 +463,6 @@ static void parseACTFile(std::filebuf &file) {
|
|||||||
|
|
||||||
static void parseACOFile(std::filebuf &file) {
|
static void parseACOFile(std::filebuf &file) {
|
||||||
// https://www.adobe.com/devnet-apps/photoshop/fileformatashtml/#50577411_pgfId-1055819
|
// https://www.adobe.com/devnet-apps/photoshop/fileformatashtml/#50577411_pgfId-1055819
|
||||||
// http://www.nomodes.com/aco.html
|
|
||||||
|
|
||||||
char buf[10];
|
char buf[10];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user