mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2026-05-11 11:21:46 +00:00
please windows.... no warnings, I'm doing a cast just for you, I need this windows 🙏
This commit is contained in:
parent
b74e486a2d
commit
6036bada40
1 changed files with 2 additions and 1 deletions
|
|
@ -45,7 +45,8 @@ void moderation_list_save() {
|
|||
struct ModerationEntry* entry = list->list[i];
|
||||
if (!entry) continue;
|
||||
fprintf(file, "[Entry %u for %u]\n", i, type);
|
||||
fprintf(file, "time = %ld\n", entry->time);
|
||||
// windows <3
|
||||
fprintf(file, "time = %lld\n", (long long)entry->time);
|
||||
fprintf(file, "playerName = %s\n", entry->playerName);
|
||||
fprintf(file, "playerColorR = %d\n", entry->playerColor[0]);
|
||||
fprintf(file, "playerColorG = %d\n", entry->playerColor[1]);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue