Skip to content

Commit

Permalink
Merge pull request #86 from HKhademian/bundler-reminder
Browse files Browse the repository at this point in the history
Bundler reminder
  • Loading branch information
rexim authored Feb 28, 2024
2 parents 07935b1 + 5e6b389 commit 9ddb4d2
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions nob.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,19 +142,9 @@ bool generate_resource_bundle(void)

genf(out, "unsigned char bundle[] = {");
size_t row_size = 20;
for (size_t row = 0; row < bundle.count/row_size; ++row){
for (size_t i = 0; i < bundle.count; ){
fprintf(out, " ");
for (size_t col = 0; col < row_size; ++col) {
size_t i = row*row_size + col;
fprintf(out, "0x%02X, ", (unsigned char)bundle.items[i]);
}
genf(out, "");
}
size_t remainder = bundle.count%row_size;
if (remainder > 0) {
fprintf(out, " ");
for (size_t col = 0; col < remainder; ++col) {
size_t i = bundle.count/row_size*row_size + col;
for (size_t col = 0; col < row_size && i < bundle.count; ++col, ++i) {
fprintf(out, "0x%02X, ", (unsigned char)bundle.items[i]);
}
genf(out, "");
Expand Down

0 comments on commit 9ddb4d2

Please sign in to comment.