This commit is contained in:
mterwoord_cp 2011-02-19 16:06:44 +00:00
parent ba843bb16c
commit 1a147fa818
3 changed files with 4 additions and 5 deletions

View file

@ -88,7 +88,7 @@ Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "Docs", "..\Docs", "{67E7DEF
Release.AspNetCompiler.ForceOverwrite = "true"
Release.AspNetCompiler.FixedNames = "false"
Release.AspNetCompiler.Debug = "False"
VWDPort = "27136"
VWDPort = "28091"
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cosmos.Compiler.Debug", "..\source2\IL2CPU\Cosmos.IL2CPU.Debug\Cosmos.Compiler.Debug.csproj", "{9998B4EA-385E-4DA2-8905-2BBEB5B2C6E2}"

View file

@ -248,8 +248,8 @@ namespace Cosmos.Debug.Common
protected void PacketMethodContext(byte[] aPacket)
{
WaitForMessage();
mStackData = aPacket;
WaitForMessage();
mStackData = aPacket.Reverse().ToArray();
// not really nice to use this one?
//mCmdWait.Set();
//WaitForMessage();

View file

@ -344,8 +344,7 @@ namespace Cosmos.Debug.VSDebugEngine
try
{
if (guidFilter == AD7Guids.guidFilterLocalsPlusArgs ||
guidFilter == AD7Guids.guidFilterAllLocalsPlusArgs ||
guidFilter == AD7Guids.guidFilterAllLocals)
guidFilter == AD7Guids.guidFilterAllLocalsPlusArgs)
{
CreateLocalsPlusArgsProperties(out elementsReturned, out enumObject);
hr = VSConstants.S_OK;