post rebase fix

This commit is contained in:
Demur Rumed 2025-04-02 17:12:19 +00:00
parent 29d5369445
commit 539c1380b4
2 changed files with 1 additions and 2 deletions

View file

@ -1,7 +1,6 @@
#include "playthrough.hpp"
#include <libultraship/libultraship.h>
#include "custom_messages.hpp"
#include "fill.hpp"
#include "../location_access.h"
#include "random.hpp"

View file

@ -10,7 +10,7 @@ const uint64_t multiplier = 6364136223846793005ULL;
const uint64_t increment = 11634580027462260723ULL;
// Initialize with seed specified
void Random_Init(uint32_t seed) {
void Random_Init(uint64_t seed) {
init = true;
state = seed;
}