diff options
Diffstat (limited to 'hge')
-rw-r--r-- | hge/power.cpp | 2 | ||||
-rw-r--r-- | hge/system.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hge/power.cpp b/hge/power.cpp index 603d794..eabeeaa 100644 --- a/hge/power.cpp +++ b/hge/power.cpp @@ -5,7 +5,7 @@ ** ** Core functions implementation: power status */ - +//DO NOT USE THIS, USE "acpi". #include "hge_impl.h" diff --git a/hge/system.cpp b/hge/system.cpp index e6fa158..915ffe1 100644 --- a/hge/system.cpp +++ b/hge/system.cpp @@ -111,7 +111,7 @@ bool CALL HGE_Impl::System_Initiate() } #else - system("uname -s -v -m > os.out"); + system("uname -svm > os.out"); char osv[100];FILE* a=fopen("os.out","r");fgets(osv,50,a);fclose(a); osv[strlen(osv)-1]='\0'; System_Log("%s: OS: %s",SYSTEM_SRC_FN,osv); |