mirror of
https://github.com/Ale32bit/Capy64.git
synced 2025-01-18 10:36:44 +00:00
Bugfix BIOS functions getting GC
This commit is contained in:
parent
1eecf58cd0
commit
5636cb0b0d
1 changed files with 3 additions and 3 deletions
|
@ -155,7 +155,7 @@ public class Bios : IPlugin
|
|||
OpenBios = true;
|
||||
}
|
||||
|
||||
private int L_OpenDataFolder(IntPtr state)
|
||||
private static int L_OpenDataFolder(IntPtr state)
|
||||
{
|
||||
var path = FileSystem.DataPath;
|
||||
switch (Environment.OSVersion.Platform)
|
||||
|
@ -171,13 +171,13 @@ public class Bios : IPlugin
|
|||
return 0;
|
||||
}
|
||||
|
||||
private int L_InstallOS(IntPtr state)
|
||||
private static int L_InstallOS(IntPtr state)
|
||||
{
|
||||
InstallOS(true);
|
||||
return 0;
|
||||
}
|
||||
|
||||
private int L_Exit(IntPtr state)
|
||||
private static int L_Exit(IntPtr state)
|
||||
{
|
||||
CloseRuntime = true;
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue