fix examples

This commit is contained in:
2025-04-12 20:22:46 -05:00
parent 1d4087e842
commit dea35c2a5e
8 changed files with 10 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
#include "Print.h"
Print::Print(void* h, Archimedes::App* a) : Archimedes::Module(h, a) {
Print::Print(Archimedes::App* a, void* h) : Archimedes::Module(a, h) {
name = "Print";
}