Add ControllerTest Overlay and support not loading new state if previous loaded

This commit is contained in:
Jaby
2024-01-03 20:38:43 -06:00
committed by Jaby
parent 3b87590218
commit b939ea0d2c
8 changed files with 57 additions and 21 deletions

View File

@@ -0,0 +1,7 @@
#include <stdio.h>
namespace ControllerTest {
void main() {
printf("CONT: BlubbBlubbBlubb!!\n");
}
}

View File

@@ -2,7 +2,6 @@
namespace GPUTest {
void main() {
printf("BlubbBlubbBlubb!!\n");
while(true);
printf("GPU: BlubbBlubbBlubb!!\n");
}
}

View File

@@ -1,4 +1,9 @@
#pragma once
namespace ControllerTest {
void main();
}
namespace GPUTest {
void main();
}