We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80af96d commit e5abd97Copy full SHA for e5abd97
src/hacklib/include/hacklib/Memory.h
@@ -4,6 +4,7 @@
4
#include "hacklib/Handles.h"
5
#include <string>
6
#include <vector>
7
+#include <cstdint>
8
9
10
namespace hl
src/test/test.cpp
@@ -545,12 +545,10 @@ static int vehCounter1 = 0;
545
static int vehCounter2 = 0;
546
static void VEHFunc1(hl::CpuContext* ctx)
547
{
548
- printf("counter1\n");
549
vehCounter1++;
550
}
551
static void VEHFunc2(hl::CpuContext* ctx)
552
553
- printf("counter2\n");
554
vehCounter2++;
555
556
void TestVEH()
0 commit comments