Implement terminal for legacy Windows users (SpartanJ/ecode#153).

Added Sys::getPlatformType.
Fix for TerminalEmulator selection.
This commit is contained in:
Martín Lucas Golini
2024-04-06 23:08:28 -03:00
parent 4f7f1b2634
commit acf0182e63
9 changed files with 126 additions and 27 deletions

View File

@@ -102,10 +102,10 @@ GitPlugin::~GitPlugin() {
// TODO: Add a signal for these waits
while ( mRunningUpdateStatus )
Sys::sleep( 1.f );
Sys::sleep( Milliseconds( 1.f ) );
while ( mRunningUpdateBranches )
Sys::sleep( 1.f );
Sys::sleep( Milliseconds( 1.f ) );
}
void GitPlugin::load( PluginManager* pluginManager ) {