mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-04-28 13:17:58 +03:00
post rebase fix
This commit is contained in:
parent
29d5369445
commit
539c1380b4
2 changed files with 1 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
||||||
#include "playthrough.hpp"
|
#include "playthrough.hpp"
|
||||||
|
|
||||||
#include <libultraship/libultraship.h>
|
#include <libultraship/libultraship.h>
|
||||||
#include "custom_messages.hpp"
|
|
||||||
#include "fill.hpp"
|
#include "fill.hpp"
|
||||||
#include "../location_access.h"
|
#include "../location_access.h"
|
||||||
#include "random.hpp"
|
#include "random.hpp"
|
||||||
|
|
|
@ -10,7 +10,7 @@ const uint64_t multiplier = 6364136223846793005ULL;
|
||||||
const uint64_t increment = 11634580027462260723ULL;
|
const uint64_t increment = 11634580027462260723ULL;
|
||||||
|
|
||||||
// Initialize with seed specified
|
// Initialize with seed specified
|
||||||
void Random_Init(uint32_t seed) {
|
void Random_Init(uint64_t seed) {
|
||||||
init = true;
|
init = true;
|
||||||
state = seed;
|
state = seed;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue