please windows.... no warnings, I'm doing a cast just for you, I need this windows 🙏

This commit is contained in:
EmeraldLockdown 2026-03-09 23:47:48 -05:00
parent b74e486a2d
commit 6036bada40

View file

@ -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]);