Skip to content

Commit

Permalink
Probably something about a Simpleton? idfk... but this is what I need…
Browse files Browse the repository at this point in the history
… to do iirc
  • Loading branch information
royalgraphx committed Dec 1, 2024
1 parent e44bcb6 commit cb647bb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion VMHide/kern_start.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,14 @@

#include "kern_start.hpp"

static VMH vmhInstance;

VMH *VMH::callbackVMH;

// Main VMH Routine function
void VMH::init() {

callbackVMH = this;
DBGLOG(MODULE_INIT, "Hello World from VMHide!");

}
Expand Down Expand Up @@ -52,7 +57,7 @@ PluginConfiguration ADDPR(config) {
[]() {

// Start the main VMH routine
VMH::init();
vmhInstance.init();

}
};

0 comments on commit cb647bb

Please sign in to comment.