further progress on new process memory cache; first pass at visualizing changed watch window rows, based on ctrl process memory cache history

This commit is contained in:
Ryan Fleury
2024-01-25 11:17:16 -08:00
parent 38b113f1d0
commit 168f66cc99
6 changed files with 87 additions and 26 deletions
+7 -8
View File
@@ -1,17 +1,16 @@
// Copyright (c) 2024 Epic Games Tools
// Licensed under the MIT license (https://opensource.org/license/mit/)
int Foo(int x, int y)
{
return x + y;
}
int main(void)
{
int x = 0;
int y = 0;
int z = 0;
for(;;)
{
int x = 23;
int y = 45;
Foo(x, y);
x += 1;
y += 1;
z += 1;
}
return 0;
}