Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Serg-Norseman committed Aug 28, 2022
1 parent 4017957 commit ac71f76
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/GKCore/GKCore/AppHost.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ public static void LogSysInfo()
{
try {
#if MONO
Logger.LogWrite("Mono Version: " + SysUtils.GetMonoVersion());
Logger.LogWrite("Desktop Type: " + SysUtils.GetDesktopType().ToString());
Logger.WriteInfo("Mono Version: " + SysUtils.GetMonoVersion());
Logger.WriteInfo("Desktop Type: " + SysUtils.GetDesktopType().ToString());
#endif

// There should be no links to the application infrastructure
Expand Down
4 changes: 4 additions & 0 deletions projects/GKTests/GKCore/ControllerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#if !MONO

using BSLib.Design.MVP;
using BSLib.Design.MVP.Controls;
using GDModel;
Expand Down Expand Up @@ -657,3 +659,5 @@ public void Test_UserRefEditDlgController()
}
}
}

#endif

0 comments on commit ac71f76

Please sign in to comment.