aboutsummaryrefslogtreecommitdiff
path: root/hge
diff options
context:
space:
mode:
authorGravatar chirs241097@gmail.com <chirs241097@gmail.com@c17bf020-1265-9734-9302-a83f62007ddb> 2014-03-19 08:34:55 +0000
committerGravatar chirs241097@gmail.com <chirs241097@gmail.com@c17bf020-1265-9734-9302-a83f62007ddb> 2014-03-19 08:34:55 +0000
commitcd2d8a40f39ccf70b6fb294cff37c879bee98c6a (patch)
tree49d8fe13a8fc64ffd4327ccfe081f70ddab87ddd /hge
parent9739a80289d57881178a9aa7c88d1490010894a5 (diff)
downloadbullet-lab-remix-cd2d8a40f39ccf70b6fb294cff37c879bee98c6a.tar.xz
A new level, sync changelog.
Diffstat (limited to 'hge')
-rw-r--r--hge/power.cpp2
-rw-r--r--hge/system.cpp2
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);