annotate xrogue/xrogue.vcxproj.filters @ 258:2908dc47f9e2
UltraRogue: fix crash when restoring.
The r_flags field in struct room was being written as an int and read
as a short. This caused the restore functions to receive the wrong
data, usually an impossible string length, and abort.
This breaks save compatibility, though the save files had problems
anyway: the r_fires field should have been used, instead of reading and
writing r_flags twice.
| author |
John "Elwin" Edwards |
| date |
Wed, 08 Feb 2017 19:50:36 -0500 |
| parents |
4146e2a06bc1 |
| children |
|
| rev |
line source |
|
208
|
1 <?xml version="1.0" encoding="utf-8"?>
|
|
|
2 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
3 <ItemGroup>
|
|
|
4 <Filter Include="Source Files">
|
|
|
5 <UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
|
|
6 <Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
|
|
7 </Filter>
|
|
|
8 <Filter Include="Header Files">
|
|
|
9 <UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
|
|
10 <Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
|
|
|
11 </Filter>
|
|
|
12 <Filter Include="Resource Files">
|
|
|
13 <UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
|
|
14 <Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
|
|
15 </Filter>
|
|
|
16 </ItemGroup>
|
|