mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-04 06:36:28 +00:00
refactor: replace some win32 typedefs
This commit is contained in:
@@ -43,7 +43,7 @@ CustomLevelSource::CustomLevelSource(Level* level, int64_t seed,
|
||||
app.DebugPrintf("Heightmap binary is too large!!\n");
|
||||
__debugbreak();
|
||||
}
|
||||
BOOL bSuccess = ReadFile(file, m_heightmapOverride.data, dwFileSize,
|
||||
bool bSuccess = ReadFile(file, m_heightmapOverride.data, dwFileSize,
|
||||
&bytesRead, NULL);
|
||||
|
||||
if (bSuccess == FALSE) {
|
||||
@@ -77,7 +77,7 @@ CustomLevelSource::CustomLevelSource(Level* level, int64_t seed,
|
||||
app.DebugPrintf("waterheight binary is too large!!\n");
|
||||
__debugbreak();
|
||||
}
|
||||
BOOL bSuccess = ReadFile(file, m_waterheightOverride.data, dwFileSize,
|
||||
bool bSuccess = ReadFile(file, m_waterheightOverride.data, dwFileSize,
|
||||
&bytesRead, NULL);
|
||||
|
||||
if (bSuccess == FALSE) {
|
||||
|
||||
Reference in New Issue
Block a user