mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-07-22 23:47:49 +00:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user