This commit is contained in:
troglodyte9 2026-03-05 22:52:33 +02:00
parent 7d6658fe5b
commit 2b031fea94
2 changed files with 3 additions and 2 deletions

View file

@ -235,6 +235,7 @@
<SccProvider>SAK</SccProvider>
<Keyword>Xbox360Proj</Keyword>
<ApplicationEnvironment>title</ApplicationEnvironment>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Xbox 360'" Label="Configuration">
@ -48678,4 +48679,4 @@ xcopy /q /y /i /s /e $(ProjectDir)Durango\CU $(LayoutDir)Image\Loose\CU</Comman
<ImportGroup Label="ExtensionTargets">
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
</ImportGroup>
</Project>
</Project>

View file

@ -66,7 +66,7 @@ void ConsoleSaveFileOutputStream::write(byteArray b)
BOOL result = m_saveFile->writeFile(
m_file,
&b.data, // data buffer
b.data, // data buffer
b.length, // number of bytes to write
&numberOfBytesWritten // number of bytes written
);