Minor bug fixing
This commit is contained in:
parent
99a6b3728d
commit
ed112a5484
1
SalmonEngineAndroid/.gitignore
vendored
1
SalmonEngineAndroid/.gitignore
vendored
@ -1,6 +1,7 @@
|
||||
*.iml
|
||||
.gradle
|
||||
/local.properties
|
||||
.idea
|
||||
/.idea/workspace.xml
|
||||
/.idea/libraries
|
||||
.DS_Store
|
||||
|
@ -1,17 +1,6 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="fishrungames.salmonengineandroid">
|
||||
|
||||
<application android:allowBackup="true"
|
||||
android:label="@string/app_name"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/AppTheme"
|
||||
android:screenOrientation="landscape"
|
||||
android:launchMode="singleTask"
|
||||
android:configChanges="orientation|keyboardHidden"
|
||||
android:noHistory="true">
|
||||
|
||||
</application>
|
||||
<uses-feature android:glEsVersion="0x00020000"/>
|
||||
|
||||
</manifest>
|
||||
|
@ -71,6 +71,7 @@ void TSimpleConsole::Draw()
|
||||
|
||||
void TSimpleConsole::CutHistory()
|
||||
{
|
||||
/*
|
||||
cardinal i = 0;
|
||||
|
||||
cardinal pos = std::string::npos;
|
||||
@ -90,7 +91,7 @@ void TSimpleConsole::CutHistory()
|
||||
if (pos != std::string::npos)
|
||||
{
|
||||
History = History.substr(pos);
|
||||
}
|
||||
}*/
|
||||
}
|
||||
|
||||
std::string TSimpleConsole::GetHistory()
|
||||
@ -234,7 +235,7 @@ TJavaConsole& TJavaConsole::operator<<(const std::string& s)
|
||||
CutHistory();
|
||||
|
||||
|
||||
__android_log_print(ANDROID_LOG_VERBOSE, APPNAME, "%s", string_with_time_mark.c_str());
|
||||
//__android_log_print(ANDROID_LOG_VERBOSE, APPNAME, "%s", string_with_time_mark.c_str());
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user